blob: 5454d6b8a4aec228672e890d78c3a81a88136e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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;
}
|