Rune.IsSymbol(Rune) 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.
Retourne une valeur qui indique si le Rune spécifié est classé dans la catégorie des symboles.
public:
static bool IsSymbol(System::Text::Rune value);
public static bool IsSymbol (System.Text.Rune value);
static member IsSymbol : System.Text.Rune -> bool
Public Shared Function IsSymbol (value As Rune) As Boolean
Paramètres
- value
- Rune
Rune à évaluer.
Retours
true
si value
est un symbole ; sinon, false
.
Remarques
Cette méthode équivaut à interroger GetUnicodeCategory(Rune) et comparer le résultat à l’une des valeurs MathSymbol, CurrencySymbol, ModifierSymbolet OtherSymbol.
Pour plus d'informations, consultez Char.IsSymbol.