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

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

public class SampleClass {
        protected int Item { set {} }
        public bool Item;
}