Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs3005-21.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d69f3a19769a3ca6e099a71dcd01c9834619a705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3005-21.cs: 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;
}