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

DocTest-nestedType-typeForwards.cs « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 679528653fb002d750117dfa2bb478c5adbd6495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if SECOND || THIRD
using System.Runtime.CompilerServices;
[assembly:TypeForwardedToAttribute(typeof(TheNamespace.TheClass))] 
#endif

namespace TheNamespace
{
    #if FIRST
    public class TheClass
    {
        protected class InnerClass
        {
            protected class Enumerator {}
        }
    }
    #endif
}