FurreList.Remove Method (Furre)

FFF3PP

FurreListRemove Method (Furre)

This stuff is still in the planning stages. Any questions or Comments are welcome.

[This is preliminary documentation and is subject to change.]

Removes the first occurrence of a specific object from the ICollectionT.

Namespace:  Furcadia.Net.DreamInfo
Assembly:  FurcadiaLib (in FurcadiaLib.dll) Version: 2.19.PreAlpha 44
Syntax
public bool Remove(
	Furre item
)
Public Function Remove ( 
	item As Furre
) As Boolean

Dim instance As FurreList
Dim item As Furre
Dim returnValue As Boolean

returnValue = instance.Remove(item)
public:
virtual bool Remove(
	Furre^ item
) sealed
abstract Remove : 
        item : Furre -> bool 
override Remove : 
        item : Furre -> bool 

Parameters

item
Type: Furcadia.Net.DreamInfoFurre
The object to remove from the ICollectionT.

Return Value

Type: Boolean
true if item was successfully removed from the ICollectionT; otherwise, false. This method also returns false if item is not found in the original ICollectionT.

Implements

ICollectionTRemove(T)
See Also