영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0215

True 또는 False 연산자의 반환 형식은 bool이어야 합니다.

사용자 정의 true 및 false 연산자에 bool의 반환 형식이 있어야 합니다.

다음 샘플에서는 CS0215를 생성합니다.

C#
// CS0215.cs  
class MyClass  
{  
   public static int operator true (MyClass MyInt)   // CS0215  
   // try the following line instead  
   // public static bool operator true (MyClass MyInt)  
   {  
      return true;  
   }  
  
   public static int operator false (MyClass MyInt)   // CS0215  
   // try the following line instead  
   // public static bool operator false (MyClass MyInt)  
   {  
      return true;  
   }  
  
   public static void Main()  
   {  
   }  
}