コード例 #1
0
        static void Main()
        {
            Test1 t = new Test1();

            t.internalMethod();
            t.privateMethod();
            t.privateProtectedMethod();
            t.protectedInternalMethod();
            t.protectedMethod();
            t.publicMethod();
        }