Forgot to add class around method :p

This commit is contained in:
Carson McManus 2016-08-21 11:38:03 -04:00
parent 0cd0b776bb
commit 897e7ed0e2

View file

@ -2,16 +2,19 @@ using System;
using System.Text; using System.Text;
using System.Linq; using System.Linq;
/// <summary> public static class Program
/// The main entry point for the application
/// </summary>
[STAThread]
public static void Main(string[] args)
{ {
if (args.Contains("--help") || args.Contains("-h")) /// <summary>
/// The main entry point for the application
/// </summary>
[STAThread]
public static void Main(string[] args)
{ {
Console.WriteLine("steamguard-cli - v0.0"); if (args.Contains("--help") || args.Contains("-h"))
Console.WriteLine(); {
Console.WriteLine("--help, -h Display this help message."); Console.WriteLine("steamguard-cli - v0.0");
Console.WriteLine();
Console.WriteLine("--help, -h Display this help message.");
}
} }
} }