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.
Implements
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET