[]
Removes an index from the collection.
public override bool Remove(LambdaExpression keySelector)
Type | Name | Description |
---|---|---|
LambdaExpression | keySelector | Key selector expression of an index, see KeySelector. |
Type | Description |
---|---|
bool | true if an index has been removed; false if there is no index with the given key selector in the collection. |
Removes an index from the collection.
public bool Remove(Index<T> index)
Type | Name | Description |
---|---|---|
Index<T> | index | The index to remove. |
Type | Description |
---|---|
bool | true if an index has been removed; false if the index does not belong to this collection. |