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

cs3008-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 316f824100bf5d31d6c70d69664fe269bff29f8c (plain)
1
2
3
4
5
6
7
8
9
// cs3008.cs: Identifier 'CLSClass._value' is not CLS-compliant
// Line: 8

using System;
[assembly: CLSCompliant(true)]

public class CLSClass {
        public const string _value = "";
}