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

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

using System;
[assembly:CLSCompliant (true)]

public enum CLSEnum {
        label,
        Label
}