FrozenSet<T>.CopyTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CopyTo(Span<T>) |
Copies the values in the set to a span. |
CopyTo(T[], Int32) |
Copies the values in the set to an array, starting at the specified |
CopyTo(Span<T>)
- Source:
- FrozenSet.cs
- Source:
- FrozenSet.cs
Copies the values in the set to a span.
public:
void CopyTo(Span<T> destination);
public void CopyTo (Span<T> destination);
member this.CopyTo : Span<'T> -> unit
Public Sub CopyTo (destination As Span(Of T))
Parameters
- destination
- Span<T>
The span that is the destination of the values copied from the set.
Applies to
CopyTo(T[], Int32)
- Source:
- FrozenSet.cs
- Source:
- FrozenSet.cs
Copies the values in the set to an array, starting at the specified destinationIndex
.
public:
virtual void CopyTo(cli::array <T> ^ destination, int destinationIndex);
public void CopyTo (T[] destination, int destinationIndex);
abstract member CopyTo : 'T[] * int -> unit
override this.CopyTo : 'T[] * int -> unit
Public Sub CopyTo (destination As T(), destinationIndex As Integer)
Parameters
- destination
- T[]
The array that is the destination of the values copied from the set.
- destinationIndex
- Int32
The zero-based index in destination
at which copying begins.