Esempio n. 1
0
        static void Main(string[] args)
        {
            one o = new one();

            o.a = 90;
            two B = new two();
        }
Esempio n. 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();
    }
Esempio n. 3
0
            static void Main(string[] args)
            {
                two B = new two();

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

            tw.Show();
        }