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

cs0548.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acd88588e41f118ea859f6a1d1b0d07d24ee7076 (plain)
1
2
3
4
5
6
7
// CS0548: `PropertyClass.Value': property or indexer must have at least one accessor
// Line: 5

class PropertyClass {
        public int Value {
        }
}