ReferenceCollection.RemoveAll C# (CSharp) Method

RemoveAll() public method

public RemoveAll ( theValue ) : void
return void
        public override void RemoveAll(T theValue)
        {
            InternalList.RemoveAll(x => x == theValue);
        }
    }
ReferenceCollection