Beispiel #1
0
        public static void Test9()
        {
            new TestScreen().Start();

            Console.WriteLine("끝~~~~~");
            Console.ReadLine();
        }
Beispiel #2
0
        public static void Test2()
        {
            new Format()
            .AppendInputText("000000", "val1")
            .AppendLine()
            .Print();

            Console.ReadLine();
            string val1 = Console.GetInputText("val1");

            Console.WriteLine(val1);
        }
Beispiel #3
0
        public static void Test1()
        {
            new Format()
            .AppendLine("[추가하기] [삭제하기] [취소하기]")
            .ToButton("추가하기", "추가하기", "safe")
            .ToButton("삭제하기", "삭제하기", "danger")
            .ToButton("취소하기", "취소하기", "safe")
            .Print();

            Console.ReadButtonSecure("danger");

            Console.WriteLine("END");
        }
Beispiel #4
0
        static void Main()
        {
            Test9();
            return;


            CheckDebug();

            SenarioRelated.Senario senario = Debug.CreateKoreanWar();
            GameRelated.senarios.Add(senario);

            EraTohoCv.GameRelated.FirstStart();
            Console.ReadLine();
            Console.WriteLine("?????");
            Console.ReadLine();
            throw new Exception();
        }
Beispiel #5
0
 public static void Test4()
 {
     (new Format() - "1" + "2" - "1" + "2" - "1" + "2" - "1" + "2").PrintLine();
     Console.WriteLine("12121212");
 }
Beispiel #6
0
 public static void Test3()
 {
     (new Format() - "버" + "튼" - "버" + "튼" - "버" + "튼" - "버" + "튼").PrintLine();
     Console.WriteLine("버튼버튼버튼버튼");
 }