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: 695eefc3bdfef381bdc418fd8cbda95f58adc678 (plain)
1
2
3
4
5
6
7
// cs0548.cs: 'PropertyClass.Value' : property or indexer must have at least one accessor
// Line: 5

class PropertyClass {
        public int Value {
        }
}