Click or drag to resize
DigitalRuneGamePropertyCollectionGetT Method (String)
Gets 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 GameProperty<T> Get<T>(
	string name
)

Parameters

name
Type: SystemString
The name of the property.

Type Parameters

T
The type of the property value.

Return Value

Type: GamePropertyT
The property.
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