Поделиться через


Vector.StoreUnsafe Метод

Определение

Перегрузки

StoreUnsafe(Vector2, Single)
StoreUnsafe(Vector3, Single)
StoreUnsafe(Vector4, Single)
StoreUnsafe(Vector2, Single, UIntPtr)
StoreUnsafe(Vector3, Single, UIntPtr)
StoreUnsafe(Vector4, Single, UIntPtr)
StoreUnsafe<T>(Vector<T>, T)

Сохраняет вектор в заданном месте назначения.

StoreUnsafe<T>(Vector<T>, T, UIntPtr)

Сохраняет вектор в заданном месте назначения.

StoreUnsafe(Vector2, Single)

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector2 source, float % destination);
public static void StoreUnsafe(this System.Numerics.Vector2 source, ref float destination);
static member StoreUnsafe : System.Numerics.Vector2 * single -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector2, ByRef destination As Single)

Параметры

source
Vector2
destination
Single

Применяется к

StoreUnsafe(Vector3, Single)

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector3 source, float % destination);
public static void StoreUnsafe(this System.Numerics.Vector3 source, ref float destination);
static member StoreUnsafe : System.Numerics.Vector3 * single -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector3, ByRef destination As Single)

Параметры

source
Vector3
destination
Single

Применяется к

StoreUnsafe(Vector4, Single)

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector4 source, float % destination);
public static void StoreUnsafe(this System.Numerics.Vector4 source, ref float destination);
static member StoreUnsafe : System.Numerics.Vector4 * single -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector4, ByRef destination As Single)

Параметры

source
Vector4
destination
Single

Применяется к

StoreUnsafe(Vector2, Single, UIntPtr)

Важно!

Этот API несовместим с CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector2 source, float % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe(this System.Numerics.Vector2 source, ref float destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector2 * single * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector2, ByRef destination As Single, elementOffset As UIntPtr)

Параметры

source
Vector2
destination
Single
elementOffset
UIntPtr

unativeint

Атрибуты

Применяется к

StoreUnsafe(Vector3, Single, UIntPtr)

Важно!

Этот API несовместим с CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector3 source, float % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe(this System.Numerics.Vector3 source, ref float destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector3 * single * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector3, ByRef destination As Single, elementOffset As UIntPtr)

Параметры

source
Vector3
destination
Single
elementOffset
UIntPtr

unativeint

Атрибуты

Применяется к

StoreUnsafe(Vector4, Single, UIntPtr)

Важно!

Этот API несовместим с CLS.

public:
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector4 source, float % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe(this System.Numerics.Vector4 source, ref float destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector4 * single * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe (source As Vector4, ByRef destination As Single, elementOffset As UIntPtr)

Параметры

source
Vector4
destination
Single
elementOffset
UIntPtr

unativeint

Атрибуты

Применяется к

StoreUnsafe<T>(Vector<T>, T)

Исходный код:
Vector.cs
Исходный код:
Vector.cs

Сохраняет вектор в заданном месте назначения.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector<T> source, T % destination);
public static void StoreUnsafe<T>(this System.Numerics.Vector<T> source, ref T destination);
static member StoreUnsafe : System.Numerics.Vector<'T> * 'T -> unit
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector(Of T), ByRef destination As T)

Параметры типа

T

Тип элементов в векторе.

Параметры

source
Vector<T>

Вектор, который будет сохранен.

destination
T

Место назначения, в котором source будет храниться.

Исключения

Тип source (T) не поддерживается.

Применяется к

StoreUnsafe<T>(Vector<T>, T, UIntPtr)

Исходный код:
Vector.cs
Исходный код:
Vector.cs

Важно!

Этот API несовместим с CLS.

Сохраняет вектор в заданном месте назначения.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static void StoreUnsafe(System::Numerics::Vector<T> source, T % destination, UIntPtr elementOffset);
[System.CLSCompliant(false)]
public static void StoreUnsafe<T>(this System.Numerics.Vector<T> source, ref T destination, UIntPtr elementOffset);
[<System.CLSCompliant(false)>]
static member StoreUnsafe : System.Numerics.Vector<'T> * 'T * unativeint -> unit
<Extension()>
Public Sub StoreUnsafe(Of T) (source As Vector(Of T), ByRef destination As T, elementOffset As UIntPtr)

Параметры типа

T

Тип элементов в векторе.

Параметры

source
Vector<T>

Вектор, который будет сохранен.

destination
T

Назначение, в которое elementOffset будет добавлено до сохранения вектора.

elementOffset
UIntPtr

unativeint

Смещение элемента, от destination которого будет храниться вектор.

Атрибуты

Исключения

Тип source (T) не поддерживается.

Применяется к