Exemplo n.º 1
0
        static void Main(string[] args)
        {
            three c = new three();

            c.test();

            Console.ReadLine();
        }
Exemplo 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();
    }
Exemplo n.º 3
0
        void Button8Click(object sender, EventArgs e)
        {
            three th = new three();

            th.Show();
        }