Char.IsBetween(Char, Char, Char) Método

Definição

Indica se um caractere está dentro do intervalo inclusivo especificado.

public:
 static bool IsBetween(char c, char minInclusive, char maxInclusive);
public static bool IsBetween (char c, char minInclusive, char maxInclusive);
static member IsBetween : char * char * char -> bool
Public Shared Function IsBetween (c As Char, minInclusive As Char, maxInclusive As Char) As Boolean

Parâmetros

c
Char

O caractere a ser avaliado.

minInclusive
Char

O limite inferior, inclusive.

maxInclusive
Char

O limite superior, inclusive.

Retornos

true se c estiver dentro do intervalo especificado; caso contrário, false.

Comentários

O método não valida que maxInclusive é maior ou igual a minInclusive. Se maxInclusive for menor que minInclusive, o comportamento será indefinido.

Aplica-se a