From e57ad4e2ce3ae7e8e04551f6f7c75c773b0f3370 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 25 Aug 2016 17:23:16 -0400 Subject: [PATCH] moved help text to a seperate function --- Program.cs | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/Program.cs b/Program.cs index c058c33..1785720 100644 --- a/Program.cs +++ b/Program.cs @@ -30,16 +30,8 @@ public static class Program // Parse cli arguments if (args.Contains("--help") || args.Contains("-h")) { - Console.WriteLine($"steamguard-cli - v{Assembly.GetExecutingAssembly().GetName().Version}"); - Console.WriteLine(); - Console.WriteLine("--help, -h Display this help message."); - Console.WriteLine("--verbose, -v Display some extra information when the program is running."); - Console.WriteLine("--user, -u Specify an account for which to generate a Steam Gaurd code."); - Console.WriteLine(" Otherwise, the first account will be selected."); - Console.WriteLine("--generate-code Generate a Steam Guard code and exit. (default)"); - Console.WriteLine("--encrypt Encrypt your maFiles or change your encryption passkey."); - Console.WriteLine("--decrypt Remove encryption from your maFiles."); - return; + ShowHelp(); + return; } Verbose = args.Contains("-v") || args.Contains("--verbose"); // Actions @@ -118,6 +110,19 @@ public static class Program } } + static void ShowHelp() + { + Console.WriteLine($"steamguard-cli - v{Assembly.GetExecutingAssembly().GetName().Version}"); + Console.WriteLine(); + Console.WriteLine("--help, -h Display this help message."); + Console.WriteLine("--verbose, -v Display some extra information when the program is running."); + Console.WriteLine("--user, -u Specify an account for which to generate a Steam Gaurd code."); + Console.WriteLine(" Otherwise, the first account will be selected."); + Console.WriteLine("--generate-code Generate a Steam Guard code and exit. (default)"); + Console.WriteLine("--encrypt Encrypt your maFiles or change your encryption passkey."); + Console.WriteLine("--decrypt Remove encryption from your maFiles."); + } + static void GenerateCode(string user = "") { if (Verbose) Console.WriteLine("Aligning time...");