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

DocTest-differentTypeDefinitions.cs « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3c1818167465855adaeb09602401c32d39aae1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace TheNamespace
{
    public class TheClass
    {
        #if FIRST
        public TheClass(int arg)
        {}
        #endif
        #if SECOND
        public TheClass(string arg)
        {}
        #endif
    }
}