SupportClass.SetSupport.Remove C# (CSharp) Method

Remove() public method

Removes an element from the set.
public Remove ( object elementToRemove ) : bool
elementToRemove object The element to be removed.
return bool
        public new virtual bool Remove(object elementToRemove)
        {
            bool result = false;
                if (this.Contains(elementToRemove))
                    result = true;
                base.Remove(elementToRemove);
                return result;
        }