WhoAmI() 공개 추상적인 메소드

public abstract WhoAmI ( ) : string
리턴 string
예제 #1
0
파일: Program.cs 프로젝트: bazile/Training
        private static void PrintFigure(Figure figure)
        {
            string whoAmI = figure.WhoAmI();
            string typeName = figure.GetType().Name;
            double area = figure.ComputeArea();

            if (whoAmI != typeName) Console.ForegroundColor = ConsoleColor.Red;

            Console.WriteLine(
                "WhoAmI = {0,-9} ; Имя класса {1,-9} ; Площадь={2:F2}",
                whoAmI,
                typeName,
                area
            );

            Console.ResetColor();
        }