RAttributeCollection.Remove Method

Removes the attribute with the specified name from the collection.

Definition

Namespace: Numerics.NET.Data.R
Assembly: Numerics.NET.Data (in Numerics.NET.Data.dll) Version: 4.0.0
C#
public bool Remove(
	string key
)

Parameters

key  String
The name of the attribute to remove.

Return Value

Boolean
true if the attribute was removed; otherwise false.

Implements

IDictionary<TKey, TValue>.Remove(TKey)

Exceptions

InvalidOperationException

The collection is read-only.

See Also