TrackingTypeArchiverStore Method |
Stores the specified value in the specified array. This method stores
one value in the array for each element in
Primitives, starting at
startIndex.
Namespace:
AGI.Foundation.Tracking
Assembly:
AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 23.2.417.0 (23.2.417.0)
Syntaxpublic abstract void Store(
Object value,
Object[] primitiveArray,
int startIndex
)
Public MustOverride Sub Store (
value As Object,
primitiveArray As Object(),
startIndex As Integer
)
public:
virtual void Store(
Object^ value,
array<Object^>^ primitiveArray,
int startIndex
) abstract
abstract Store :
value : Object *
primitiveArray : Object[] *
startIndex : int -> unit
Parameters
- value
- Type: SystemObject
The value to store in the array. - primitiveArray
- Type: SystemObject
The array in which to store the primitives composing value. - startIndex
- Type: SystemInt32
The first index at which to store the primitives composing value.
See Also