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

Interface2.cs « TestInterfaceImplementation « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d42314f70a1e4b6af57e98a971cc21c0cf78daf5 (plain)
1
2
3
4
5
6
7
8
namespace TestInterfaceImplementation
{
    public interface Interface2
    {
        int Method(int i);
        int Method2(double i);
    }
}