Rune.IsSymbol(Rune) Método

Definição

Retorna um valor que indica se o símbolo especificado é categorizado como um caractere de símbolo.Returns a value that indicates whether the specified rune is categorized as a symbol character.

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

Parâmetros

value
Rune

O símbolo a ser avaliado.The rune to evaluate.

Retornos

Boolean

true se value for um símbolo de caractere; caso contrário, false.true if value is a symbol character; otherwise, false.

Comentários

Esse método é equivalente a consultar GetUnicodeCategory(Rune) e comparar o resultado com relação a qualquer um dos valores MathSymbol ,,, CurrencySymbol ModifierSymbol e OtherSymbol .This method is equivalent to querying GetUnicodeCategory(Rune) and comparing the result against any of the values MathSymbol, CurrencySymbol, ModifierSymbol, and OtherSymbol.

Para obter mais informações, consulte Char.IsSymbol.For more information, see Char.IsSymbol.

Aplica-se a