Click or drag to resize
DigitalRuneGamePropertyCollectionRemoveT Method (String)
Removes the property with the given name.

Namespace: DigitalRune.Game
Assembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
Syntax
public bool Remove<T>(
	string name
)

Parameters

name
Type: SystemString
The name of the property.

Type Parameters

T
The type of the property value.

Return Value

Type: Boolean
if the property was removed; otherwise, if the property was not found.
Exceptions
ExceptionCondition
ArgumentNullExceptionname is .
ArgumentExceptionname is an empty string.
ArgumentException The property is not defined. Properties must be defined with CreatePropertyT(String, String, String, T) before they can be used.
See Also