Booter.Booter.CheckHelpVersion C# (CSharp) 메소드

CheckHelpVersion() 개인적인 정적인 메소드

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

            return false;
        }