Axiom.Math.Collections.BaseCollection.Remove C# (CSharp) Méthode

Remove() public méthode

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

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