Ensage.Common.Menu.AbilityToggler.Remove C# (CSharp) Method

Remove() public method

The remove.
public Remove ( string name ) : void
name string /// The name. ///
return void
        public void Remove(string name)
        {
            if (this.Dictionary.ContainsKey(name))
            {
                this.Dictionary.Remove(name);
            }
        }