Vector64.CopyTo Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
CopyTo<T>(Vector64<T>, T[], Int32) |
Kopiert einen Vector64<T> ab dem angegebenen Index in ein bestimmtes Array. |
CopyTo<T>(Vector64<T>, Span<T>) |
Kopiert eine Vector64<T> in eine bestimmte Spanne. |
CopyTo<T>(Vector64<T>, T[]) |
Kopiert ein Vector64<T> in ein bestimmtes Array. |
CopyTo<T>(Vector64<T>, T[], Int32)
- Quelle:
- Vector64.cs
- Quelle:
- Vector64.cs
- Quelle:
- Vector64.cs
Kopiert einen Vector64<T> ab dem angegebenen Index in ein bestimmtes Array.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, cli::array <T> ^ destination, int startIndex);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, cli::array <T> ^ destination, int startIndex);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination, int startIndex) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination, int startIndex);
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * 'T[] * int -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T> * 'T[] * int -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector64(Of T), destination As T(), startIndex As Integer)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector64(Of T), destination As T(), startIndex As Integer)
Typparameter
- T
Der Typ der Elemente im Vektor.
Parameter
- vector
- Vector64<T>
Der zu kopierende Vektor.
- destination
- T[]
Das Array, in das vector
kopiert wird.
- startIndex
- Int32
Der Anfangsindex, in destination
den vector
kopiert wird.
Ausnahmen
Die Länge vondestination
ist kleiner als Count.
destination
ist null
.
startIndex
ist negativ oder größer als die Länge von destination
.
Der Typ von vector
und destination
(T
) wird nicht unterstützt.
Gilt für:
CopyTo<T>(Vector64<T>, Span<T>)
- Quelle:
- Vector64.cs
- Quelle:
- Vector64.cs
- Quelle:
- Vector64.cs
Kopiert eine Vector64<T> in eine bestimmte Spanne.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, Span<T> destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, Span<T> destination);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector64<T> vector, Span<T> destination) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector64<T> vector, Span<T> destination);
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T> * Span<'T> -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector64(Of T), destination As Span(Of T))
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector64(Of T), destination As Span(Of T))
Typparameter
- T
Der Typ der Elemente im Vektor.
Parameter
- vector
- Vector64<T>
Der zu kopierende Vektor.
- destination
- Span<T>
Die Spanne, in die vector
kopiert wird.
Ausnahmen
Die Länge vondestination
ist kleiner als Count.
Der Typ von vector
und destination
(T
) wird nicht unterstützt.
Gilt für:
CopyTo<T>(Vector64<T>, T[])
- Quelle:
- Vector64.cs
- Quelle:
- Vector64.cs
- Quelle:
- Vector64.cs
Kopiert ein Vector64<T> in ein bestimmtes Array.
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, cli::array <T> ^ destination);
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector64<T> vector, cli::array <T> ^ destination);
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination) where T : struct;
public static void CopyTo<T> (this System.Runtime.Intrinsics.Vector64<T> vector, T[] destination);
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T (requires 'T : struct)> * 'T[] -> unit (requires 'T : struct)
static member CopyTo : System.Runtime.Intrinsics.Vector64<'T> * 'T[] -> unit
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector64(Of T), destination As T())
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector64(Of T), destination As T())
Typparameter
- T
Der Typ der Elemente im Vektor.
Parameter
- vector
- Vector64<T>
Der zu kopierende Vektor.
- destination
- T[]
Das Array, in das vector
kopiert wird.
Ausnahmen
destination
ist null
Die Länge vondestination
ist kleiner als Count.
Der Typ von vector
und destination
(T
) wird nicht unterstützt.