Axiom.Math.Collections.BaseCollection.Remove C# (CSharp) Method

Remove() public method

Removes the item from the collection.
public Remove ( object item ) : void
item object
return void
        public void Remove( object item )
        {
            int index = objectList.IndexOf( item );

            if ( index != -1 )
                objectList.RemoveAt( index );
        }