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

cs0571.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7909f60c1eec9c0e94362587f27191f80af3dddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0571.cs: 'MainClass.Value.get' : cannot explicitly call operator or accessor
// Line: 12

class MainClass {
        static int Value {
                get {
                        return 1;
                }
        }
        
        public static void Main() {
                int value = get_Value();
        }
}