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

cs3001-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ba56d1c00b9f2b183b5e94d260333a5a383ea71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs3001.cs: Argument type 'ulong' is not CLS-compliant
// Line: 8

using System;
[assembly:CLSCompliant (true)]

public class CLSClass {
        public long this [ulong index] {
                get {
                        return 2;
                }
        }
}