Span2D<T>.GetRow(Int32) 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.
Gets an enumerable that traverses items in a specified row.
public CommunityToolkit.HighPerformance.Enumerables.RefEnumerable<T> GetRow (int row);
member this.GetRow : int -> CommunityToolkit.HighPerformance.Enumerables.RefEnumerable<'T>
Public Function GetRow (row As Integer) As RefEnumerable(Of T)
Parameters
Returns
A RefEnumerable<T> with target items to enumerate.
Remarks
The returned RefEnumerable<T> value shouldn't be used directly: use this extension in a foreach
loop.