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

cs3005-23.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4911f67df5501077f06565b1001be8f2a5915a1b (plain)
1
2
3
4
5
6
7
8
9
// cs3005.cs: Identifier 'CLSClass.a.get' differing only in case is not CLS-compliant
// Line: 8

[assembly:System.CLSCompliant(true)]

public class CLSClass {
        public int get_A () { return 3; }
        public int a { get { return 2; } }
}