コード例 #1
0
ファイル: Program.cs プロジェクト: ppsinghgit/oopsPractice
        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
ファイル: MainForm.cs プロジェクト: uunkss/ELASTIC-LIPS
        void Button7Click(object sender, EventArgs e)
        {
            two tw = new two();

            tw.Show();
        }