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

cs0111-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fac48453dc1dcacfe1bfd205ebc653e5efe4bbc5 (plain)
1
2
3
4
5
6
7
// cs0111.cs: Class 'ISample' already defines a member called 'set_Item' with the same parameter types
// Line: 6

public interface ISample {
        void set_Item (int a, int b);
        int this[int i] { set; }
}