Rune.IsDigit(Rune) Méthode

Définition

Retourne une valeur qui indique si le rune spécifié est classé comme un chiffre décimal.

public:
 static bool IsDigit(System::Text::Rune value);
public static bool IsDigit(System.Text.Rune value);
static member IsDigit : System.Text.Rune -> bool
Public Shared Function IsDigit (value As Rune) As Boolean

Paramètres

value
Rune

Rune à évaluer.

Retours

true s’il s’agit value d’un chiffre décimal ; sinon, false.

Remarques

Cette méthode équivaut à interroger GetUnicodeCategory(Rune) et à comparer le résultat par rapport DecimalDigitNumberà .

Pour plus d’informations, consultez Char.IsDigit.

S’applique à