GetRange Method
Gets a range of items from the collection.
Definition
Namespace: Avalonia.Collections
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public IEnumerable<T> GetRange(
int index,
int count
)
Public Function GetRange (
index As Integer,
count As Integer
) As IEnumerable(Of T)
member GetRange :
index : int *
count : int -> IEnumerable<'T>
Parameters
- Int32
- The zero-based AvaloniaList(T) index at which the range starts.
- Int32
- The number of elements in the range.