From a9a39934218cf8ceca8fab2a641839a8c6a3f3f8 Mon Sep 17 00:00:00 2001 From: Auleiy Date: Thu, 22 Aug 2024 10:55:14 +0800 Subject: [PATCH] fix: console ui format incorrect --- Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 537ac65..4021dee 100644 --- a/Program.cs +++ b/Program.cs @@ -1,4 +1,6 @@ Console.Write("转换CUR还是ANI?[C/a]"); -if (Console.ReadKey().Key == ConsoleKey.A) +ConsoleKey k = Console.ReadKey().Key; +Console.WriteLine(); +if (k == ConsoleKey.A) Ani.Convert(); Cur.Convert(); \ No newline at end of file