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: 44d8f75d6a1aa7cfc3c4e34fefab645218cd9eb0 (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();
        }
}