Rune.IsUpper(Rune) Método
Definição
Retorna um valor que indica se o símbolo especificado é categorizado como uma letra maiúscula.Returns a value that indicates whether the specified rune is categorized as an uppercase letter.
public:
static bool IsUpper(System::Text::Rune value);
public static bool IsUpper (System.Text.Rune value);
static member IsUpper : System.Text.Rune -> bool
Public Shared Function IsUpper (value As Rune) As Boolean
Parâmetros
- value
- Rune
O símbolo a ser avaliado.The rune to evaluate.
Retornos
true se value for uma letra maiúscula; caso contrário, false.true if value is an uppercase letter; otherwise,false.
Comentários
Esse método é equivalente a consultar GetUnicodeCategory(Rune) e comparar o resultado UppercaseLetter .This method is equivalent to querying GetUnicodeCategory(Rune) and comparing the result against UppercaseLetter.
Para obter mais informações, consulte Char.IsUpper.For more information, see Char.IsUpper.