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: 377cb7d8a7595f49e9e2ba01b54a7de9f7db5a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs3003-2.cs: Type of `CLSClass.Index' is not CLS-compliant
// Line: 10

using System;
[assembly:CLSCompliant(true)]

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