ImmutableArray<T>.Slice(Int32, Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Forms une tranche du courant ImmutableArray<T> en commençant à un index spécifié pour une longueur spécifiée.
public:
System::Collections::Immutable::ImmutableArray<T> Slice(int start, int length);
public System.Collections.Immutable.ImmutableArray<T> Slice (int start, int length);
member this.Slice : int * int -> System.Collections.Immutable.ImmutableArray<'T>
Public Function Slice (start As Integer, length As Integer) As ImmutableArray(Of T)
Paramètres
- start
- Int32
Index auquel commence cette section.
- length
- Int32
Longueur souhaitée de la section.
Retours
ImmutableArray<T> qui se compose d’éléments length
du actuel ImmutableArray<T>, à partir de start
.
S’applique à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.