BalloonsPop.Core.Commands.CommandFactory.ContainsKey C# (CSharp) Method

ContainsKey() public method

A method to check if the command is already created.
public ContainsKey ( string commandKey ) : bool
commandKey string
return bool
        public bool ContainsKey(string commandKey)
        {
            return this.commandMap.ContainsKey(commandKey);
        }