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

cs3003-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e1a5be8220a0e5434086d816bce2413b8a23a7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS3003: Type of 'CLSClass.Index' is not CLS-compliant
// Line: 10

using System;
[assembly:CLSCompliant(true)]

public class CLSClass {
        public ulong Index {
            set
            {
            }
        }
}