15 lines
332 B
C#
Raw Normal View History

// CS3005: Identifier `CLSClass.NameAbC' differing only in case is not CLS-compliant
// Line: 12
// Compiler options: -warnaserror
using System;
[assembly:CLSCompliant (true)]
public class CLSClass {
[CLSCompliant (false)]
public int NameABC;
public int NameAbc;
public int NameAbC;
}