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

Class5.cs « TestInterfaceImplementation « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a275e7153066b1a5e7e4e6a980210f16939291a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace TestInterfaceImplementation
{
    public class Class5 : Interface6
    {
        public int Method<TTT>()
        {
            throw new System.NotImplementedException();
        }

        public int Method()
        {
            throw new System.NotImplementedException();
        }
    }
}