Yaircc.MainForm.CommandIsCommandsList C# (CSharp) Method

CommandIsCommandsList() private method

Gets a value that indicates whether or not the command issued was /commands.
private CommandIsCommandsList ( string input ) : bool
input string The command to check.
return bool
        private bool CommandIsCommandsList(string input)
        {
            return input.Trim().ToLower().Equals("/commands");
        }
MainForm