Vector128.CopyTo Metódus
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
Túlterhelések
| Name | Description |
|---|---|
| CopyTo<T>(Vector128<T>, Span<T>) |
Átmásolja az a-t Vector128<T> egy adott időtartamba. |
| CopyTo<T>(Vector128<T>, T[]) |
Egy adott tömbbe másol Vector128<T> egy példányt. |
| CopyTo<T>(Vector128<T>, T[], Int32) |
Egy adott tömbbe másol Vector128<T> a megadott indextől kezdve. |
CopyTo<T>(Vector128<T>, Span<T>)
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
Átmásolja az a-t Vector128<T> egy adott időtartamba.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, Span<T> destination);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, Span<T> destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector128<T> vector, Span<T> destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector128<T> vector, Span<T> destination) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T> * Span<'T> -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector128(Of T), destination As Span(Of T))
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector128(Of T), destination As Span(Of T))
Típusparaméterek
- T
A vektor elemeinek típusa.
Paraméterek
- vector
- Vector128<T>
A másolandó vektor.
- destination
- Span<T>
Az a span, amelyre a program átmásolja a vector elemet.
Kivételek
A hossz destination kisebb, mint Count.
A típus vector és destination a (T) nem támogatott.
A következőre érvényes:
CopyTo<T>(Vector128<T>, T[])
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
Egy adott tömbbe másol Vector128<T> egy példányt.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T> * 'T[] -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T[] -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector128(Of T), destination As T())
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector128(Of T), destination As T())
Típusparaméterek
- T
A vektor elemeinek típusa.
Paraméterek
- vector
- Vector128<T>
A másolandó vektor.
- destination
- T[]
A tömb, amelybe vector a program másolt.
Kivételek
destination az null.
A hossz destination kisebb, mint Count.
A típus vector és destination a (T) nem támogatott.
A következőre érvényes:
CopyTo<T>(Vector128<T>, T[], Int32)
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
- Forrás:
- Vector128.cs
Egy adott tömbbe másol Vector128<T> a megadott indextől kezdve.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination, int startIndex);
public:
generic <typename T>
where T : value class[System::Runtime::CompilerServices::Extension]
static void CopyTo(System::Runtime::Intrinsics::Vector128<T> vector, cli::array <T> ^ destination, int startIndex);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination, int startIndex);
public static void CopyTo<T>(this System.Runtime.Intrinsics.Vector128<T> vector, T[] destination, int startIndex) where T : struct;
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T> * 'T[] * int -> unit
static member CopyTo : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * 'T[] * int -> unit (requires 'T : struct)
<Extension()>
Public Sub CopyTo(Of T) (vector As Vector128(Of T), destination As T(), startIndex As Integer)
<Extension()>
Public Sub CopyTo(Of T As Structure) (vector As Vector128(Of T), destination As T(), startIndex As Integer)
Típusparaméterek
- T
A vektor elemeinek típusa.
Paraméterek
- vector
- Vector128<T>
A másolandó vektor.
- destination
- T[]
A tömb, amelybe vector a program másolt.
- startIndex
- Int32
A program kimásolja annak kezdő indexét destinationvector .
Kivételek
A hossz destination kisebb, mint Count.
destination az null.
startIndex negatív vagy nagyobb, mint a hossza destination.
A típus vector és destination a (T) nem támogatott.