aviso do compilador (nível 1) CS3008
Mensagem de erro
Identificador 'identificador' difere somente quando não é compatível com CLS
A public, protected, or protectedinternal identifier breaks compliance with the Common Language Specification (CLS) if it begins with an underscore character (_).For more information on CLS Compliance, see Writing CLS-Compliant Code and CLS (Common Language Specification).
Exemplo
O exemplo a seguir gera 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()
{
}
}