C #에서 확장 메서드를 사용할 때 오류 3.0 프레임 워크에 버그가 있다고 생각하게 만드는 문제를 발견했습니다. 확장 메서드를 사용하려고하면 다음 오류가 발생합니다. Missing compiler required member 'System.Runtime.CompilerServices.ExtensionAttribute..ctor' 이 간단한 코드를 사용할 때 : public static class StringUtils { static void TestExtension(this String targetString) { } } 이 컴파일 오류를 없애는 유일한 방법은 다음 코드를 추가하는 것입니다. namespace System.Runtime.CompilerServices { public class Exten..