From 897e7ed0e2e0dd38854525939f04c71a7488dc78 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 21 Aug 2016 11:38:03 -0400 Subject: [PATCH] Forgot to add class around method :p --- Program.cs | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/Program.cs b/Program.cs index e652f1e..d190d2d 100644 --- a/Program.cs +++ b/Program.cs @@ -2,16 +2,19 @@ using System; using System.Text; using System.Linq; -/// -/// The main entry point for the application -/// -[STAThread] -public static void Main(string[] args) +public static class Program { - if (args.Contains("--help") || args.Contains("-h")) + /// + /// The main entry point for the application + /// + [STAThread] + public static void Main(string[] args) { - Console.WriteLine("steamguard-cli - v0.0"); - Console.WriteLine(); - Console.WriteLine("--help, -h Display this help message."); + if (args.Contains("--help") || args.Contains("-h")) + { + Console.WriteLine("steamguard-cli - v0.0"); + Console.WriteLine(); + Console.WriteLine("--help, -h Display this help message."); + } } }