編譯器警告 (層級 1) CS3002
更新:2007 年 11 月
錯誤訊息
'method' 的傳回型別不符合 CLS 標準
public、protected 或 protectedinternal 方法必須傳回型別符合 Common Language Specification (CLS) 標準的值。如需 CLS 標準符合性的詳細資訊,請參閱撰寫符合 CLS 標準的程式碼和 Common Language Specification。
範例
下列範例會產生 CS3002:
// CS3002.cs
[assembly:System.CLSCompliant(true)]
public class a
{
public ushort bad() // CS3002, public method
{
ushort a;
a = ushort.MaxValue;
return a;
}
private ushort OK() // OK, private method
{
ushort a;
a = ushort.MaxValue;
return a;
}
public static void Main()
{
}
}