コード例 #1
0
ファイル: Program.cs プロジェクト: xushenghan/il2cpp
        public static void Entry()
        {
            IInf inf = new Sub1();

            inf.foo(123);

            inf = new Sub2();
            inf.foo(456);
        }