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

cs0547.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a494f9c8b8d700fcc919c09966142394ce8783c6 (plain)
1
2
3
4
5
6
// cs0547.cs: 'Value' : property or indexer cannot have void type
// Line: 5

class PropertyClass {
        public void Value { get {} }
}