Booter.Booter.CheckHelpVersion C# (CSharp) Method

CheckHelpVersion() private static method

private static CheckHelpVersion ( ) : bool
return bool
        private static bool CheckHelpVersion ()
        {
            if (ApplicationContext.CommandLine.ContainsStart ("help")) {
                ShowHelp ();
                return true;
            } else if (ApplicationContext.CommandLine.Contains ("version")) {
                ShowVersion ();
                return true;
            }

            return false;
        }