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

gtest-433.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 80e1141213d52d17d76f1c8cd8633dc4be137438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Compiler options: -r:gtest-433-lib.dll

using C1 = Blah.Class1;
using C2 = Blah.Class2;
using Cit = Blah.Class2.Citrus;

public class M 
{
    public static void Main() 
    {
        // access an internal type
        C1 a = new C1();
        a.Test();

        C2 b = new C2();
        // access an internal member of a public type
        b.Test();

        Cit.Lime.ToString ();
    }
}