编译器警告(等级 1)CS3008
仅大小写不同的标识符“identifier”不符合 CLS
如果以下划线字符 (_) 开头,则一个公共、受保护或 protected internal
标识符违反公共语言规范 (CLS)。 有关 CLS 符合性的详细信息,请参阅语言独立性和与语言无关的组件。
以下示例生成 CS3008:
// CS3008.cs
using System;
[assembly:CLSCompliant(true)]
public class a
{
public static int _a = 0; // CS3008
// OK, private
// private static int _a1 = 0;
public static void Main()
{
}
}