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

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

public interface ISample {
        int Blah ();
        int Blah ();
}