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: 903027d8e94ec81b5cd2226f6c8cb110a9d7e9be (plain)
1
2
3
4
5
6
7
// cs0102.cs: The type `SampleClass' already contains a definition for `set_Item'
// Line: 6

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