Method StoreUnsafe
StoreUnsafe<T>(Vector<T>, ref T)
Stores a vector at the given destination.
public static void StoreUnsafe<T>(Vector<T> source, ref T destination)
Parameters
sourceVector<T>The vector that will be stored.
destinationTThe destination at which source will be stored.
Type Parameters
TThe type of the elements in the vector.
Exceptions
- NotSupportedException
The type of
source(T) is not supported.
StoreUnsafe<T>(Vector<T>, ref T, nuint)
Stores a vector at the given destination.
[CLSCompliant(false)]
public static void StoreUnsafe<T>(Vector<T> source, ref T destination, nuint elementOffset)
Parameters
sourceVector<T>The vector that will be stored.
destinationTThe destination to which elementOffset will be added before the vector will be stored.
elementOffsetnuintThe element offset from destination from which the vector will be stored.
Type Parameters
TThe type of the elements in the vector.