컴파일러 오류 CS0559
++ 또는 -- 연산자의 매개 변수 형식은 포함하는 형식이어야 합니다.
연산자 오버로드에 대한 메서드 선언은 다음의 특정 지침을 따라야 합니다. ++ 및 -- 연산자의 경우 매개 변수는 연산자가 오버로드되는 형식과 동일한 형식이어야 합니다.
다음 샘플에서는 CS0559를 생성합니다.
C#
// CS0559.cs
// compile with: /target:library
public class iii
{
public static implicit operator int(iii x)
{
return 0;
}
public static implicit operator iii(int x)
{
return null;
}
public static int operator ++(int aa) // CS0559
// try the following line instead
// public static iii operator ++(iii aa)
{
return (iii)0;
}
}
다음 샘플에서는 CS0559를 생성합니다.
C#
// CS0559_b.cs
// compile with: /target:library
public struct S
{
public static S operator ++(S? s) { return new S(); } // CS0559
public static S operator --(S? s) { return new S(); } // CS0559
}
public struct T
{
// OK
public static T operator --(T t) { return new T(); }
public static T operator ++(T t) { return new T(); }
public static T? operator --(T? t) { return new T(); }
public static T? operator ++(T? t) { return new T(); }
}
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.