From 941f37b92f12659de928739c11817266fccb35db Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 21 Aug 2016 19:37:05 -0400 Subject: [PATCH] Finished --help output --- Program.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 84da33c..4813e44 100644 --- a/Program.cs +++ b/Program.cs @@ -29,7 +29,10 @@ public static class Program { Console.WriteLine("steamguard-cli - v0.0"); Console.WriteLine(); - Console.WriteLine("--help, -h Display this help message."); + Console.WriteLine("--help, -h Display this help message."); + Console.WriteLine("--verbose, -v Display some extra information when the program is running."); + Console.WriteLine("--user, -c Specify an account for which to generate a Steam Gaurd code."); + Console.WriteLine(" Otherwise, the first account will be selected."); return; } Verbose = args.Contains("-v") || args.Contains("--verbose");