ReadOnlyRefEnumerable<T>.ToArray 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.
Returns a T
array with the values in the target row.
public T[] ToArray ();
member this.ToArray : unit -> 'T[]
Public Function ToArray () As T()
Returns
T[]
A T
array with the values in the target row.
Remarks
This method will allocate a new T
array, so only use it if you really need to copy the target items in a new memory location.