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

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

[assembly:System.CLSCompliant (true)]

public class BaseClass {
        public int method;
}

public class CLSClass : BaseClass {
        public static void Method(int arg) {}
}