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

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

[assembly:System.CLSCompliant(true)]

public class CLSClass {
        protected int Constant = 1;
        protected const bool constant = false;
}