MemoryExtensions.Count 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.
Surcharges
Count<T>(Span<T>, ReadOnlySpan<T>) |
Compte le nombre de fois où le |
Count<T>(ReadOnlySpan<T>, ReadOnlySpan<T>) |
Compte le nombre de fois où |
Count<T>(ReadOnlySpan<T>, T) |
Compte le nombre de fois où le |
Count<T>(Span<T>, T) |
Compte le nombre de fois où le |
Count<T>(Span<T>, ReadOnlySpan<T>)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
Compte le nombre de fois où le value
spécifié se produit dans le span
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int Count(Span<T> span, ReadOnlySpan<T> value);
public static int Count<T> (this Span<T> span, ReadOnlySpan<T> value) where T : IEquatable<T>;
static member Count : Span<'T (requires 'T :> IEquatable<'T>)> * ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As Span(Of T), value As ReadOnlySpan(Of T)) As Integer
Paramètres de type
- T
Type d’élément de l’étendue.
Paramètres
- span
- Span<T>
Étendue à rechercher.
- value
- ReadOnlySpan<T>
Valeur pour laquelle effectuer une recherche.
Retours
Le nombre de fois où value
a été trouvé dans le span
.
S’applique à
Count<T>(ReadOnlySpan<T>, ReadOnlySpan<T>)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
Compte le nombre de fois où value
se produit dans span
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int Count(ReadOnlySpan<T> span, ReadOnlySpan<T> value);
public static int Count<T> (this ReadOnlySpan<T> span, ReadOnlySpan<T> value) where T : IEquatable<T>;
static member Count : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value As ReadOnlySpan(Of T)) As Integer
Paramètres de type
- T
Type d’élément de l’étendue.
Paramètres
- span
- ReadOnlySpan<T>
Étendue à rechercher.
- value
- ReadOnlySpan<T>
Valeur pour laquelle effectuer une recherche.
Retours
Le nombre de fois où value
a été trouvé dans span
.
S’applique à
Count<T>(ReadOnlySpan<T>, T)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
Compte le nombre de fois où le value
spécifié se produit dans le span
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int Count(ReadOnlySpan<T> span, T value);
public static int Count<T> (this ReadOnlySpan<T> span, T value) where T : IEquatable<T>;
static member Count : ReadOnlySpan<'T (requires 'T :> IEquatable<'T>)> * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As ReadOnlySpan(Of T), value As T) As Integer
Paramètres de type
- T
Type d’élément de l’étendue.
Paramètres
- span
- ReadOnlySpan<T>
Étendue à rechercher.
- value
- T
Valeur pour laquelle effectuer une recherche.
Retours
Le nombre de fois où value
a été trouvé dans le span
.
S’applique à
Count<T>(Span<T>, T)
- Source:
- MemoryExtensions.cs
- Source:
- MemoryExtensions.cs
Compte le nombre de fois où le value
spécifié se produit dans le span
.
public:
generic <typename T>
where T : IEquatable<T>[System::Runtime::CompilerServices::Extension]
static int Count(Span<T> span, T value);
public static int Count<T> (this Span<T> span, T value) where T : IEquatable<T>;
static member Count : Span<'T (requires 'T :> IEquatable<'T>)> * 'T -> int (requires 'T :> IEquatable<'T>)
<Extension()>
Public Function Count(Of T As IEquatable(Of T)) (span As Span(Of T), value As T) As Integer
Paramètres de type
- T
Type d’élément de l’étendue.
Paramètres
- span
- Span<T>
Étendue à rechercher.
- value
- T
Valeur pour laquelle effectuer une recherche.
Retours
Le nombre de fois où value
a été trouvé dans le span
.