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

cs3005-20.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d153d362ac9430a0649d3a6d79d76f8ad757b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs3005.cs: Identifier 'I.BLAH.get' differing only in case is not CLS-compliant
// Line: 15

using System.Runtime.CompilerServices;
using System;

[assembly: CLSCompliant (true)]

public interface I {
	[IndexerName ("blah")]
	int this [int a] {
            get;
	}

 	int BLAH { get; }
}