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

cs3005-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd893c3c2ca5b5d5e6032ce47ef8cb531692748b (plain)
1
2
3
4
5
6
7
8
9
// cs3005.cs: Identifier 'CLSClass.this[int].set' differing only in case is not CLS-compliant
// Line: 8

[assembly:System.CLSCompliant(true)]

public class CLSClass {
        protected int SET_item;
        public int this[int index] { set {} }        
}