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

cs0619-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 821670b4824e9ce816fbcb3becc2a0abb6f5810d (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0619.cs: 'A._value' is obsolete: 'Do not use it'
// Line: 9

class A {
    [System.Obsolete("Do not use it", true)]
    int _value;
    
    public A () {
        _value = 4;
    }
}