コード例 #1
0
ファイル: Program.cs プロジェクト: MBDMNET/Curso_NetCore
        static void Main(string[] args)
        {
            Console.Clear();
            ClasePadre padre = new ClasePadre();

            padre.show();

            padre = new ClaseHija();
            padre.show();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: MBDMNET/Curso_NetCore
        static void Main(string[] args)
        {
            Cabecera2();
            ClasePadre padre = new ClasePadre();

            padre.show();

            padre = new ClaseHija();
            padre.show();
        }