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

cs0102-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44c73d7bba03731e9727372b078bf23d63997b61 (plain)
1
2
3
4
5
6
7
8
9
// cs0102.cs: The class 'SampleClass' already contains a definition for 'set_Item'
// Line: 7

public class SampleClass {
        protected const int set_Item = 3;
        public int Item { 
            set {}
        }        
}