Click or drag to resize

BasicState.AddStateElementValue<T> Method

Adds an element to this state. Calling code is responsible for ensuring that the value is of a type that this state can store.

Namespace:  AGI.Foundation.Coordinates
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public void AddStateElementValue<T>(
	string elementIdentification,
	T value
)

Parameters

elementIdentification
Type: System.String
The name of the new element.
value
Type: T
The value of the new element.

Type Parameters

T
The type of the element being added to the state.

Implements

IAdjustableState.AddStateElementValue<T>(String, T)
See Also