영어로 읽기

다음을 통해 공유


컴파일러 오류 CS1043

{ 또는 ;이 필요합니다.

속성 접근자가 잘못 선언되었습니다. 자세한 내용은 Using Properties을 참조하세요.

예시

다음 샘플에서는 CS1043을 생성합니다.

// CS1043.cs  
// compile with: /target:library  
public class MyClass  
{  
   public int DoSomething  
   {  
      get return 1;   // CS1043  
      set {}  
   }  
  
   // OK  
   public int DoSomething2  
   {  
      get { return 1;}  
   }  
}