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

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

public class SampleClass {
        protected int set_Item;
        public int this[int index] { set {} }        
}