예제 #1
0
        static void Main(string[] args)
        {
            one o = new one();

            o.a = 90;
            two B = new two();
        }
예제 #2
0
    public static void Main()
    {
        one   o = new two();
        three t = new three();

        o.func();
        o.func1();
        t.func();
        t.func1();

        o = t;
        o.func();
        o.func1();

        one a = new one();

        a.func();
        a.func1();
    }
예제 #3
0
            static void Main(string[] args)
            {
                two B = new two();

                B.show();
            }
예제 #4
0
        void Button7Click(object sender, EventArgs e)
        {
            two tw = new two();

            tw.Show();
        }