Rune.IsControl(Rune) Метод
Определение
Возвращает значение, которое показывает, относится ли указанная руна к категории управляющих символов.Returns a value that indicates whether the specified rune is categorized as a control character.
public:
static bool IsControl(System::Text::Rune value);
public static bool IsControl (System.Text.Rune value);
static member IsControl : System.Text.Rune -> bool
Public Shared Function IsControl (value As Rune) As Boolean
Параметры
- value
- Rune
Оцениваемая руна.The rune to evaluate.
Возвраты
Значение true
, если value
является управляющим символом; в противном случае — false
.true
if value
is a control character; otherwise, false
.
Комментарии
Этот метод эквивалентен запросам GetUnicodeCategory(Rune) и сравнению результатов Control.This method is equivalent to querying GetUnicodeCategory(Rune) and comparing the result against Control.
Для политик стабильной работы в Юникоденабор управляющих символов постоянно фиксируется как объединение [ U+0000..U+001F ]
и [ U+007F..U+009F ]
.Per Unicode stability policies, the set of control characters is permanently fixed to be the union of [ U+0000..U+001F ]
and [ U+007F..U+009F ]
.
Для получения дополнительной информации см. Char.IsControl.For more information, see Char.IsControl.