Rune.IsPunctuation(Rune) 方法

定义

返回一个值,该值指示指定的 rune 是否属于标点符号类别。

public:
 static bool IsPunctuation(System::Text::Rune value);
public static bool IsPunctuation (System.Text.Rune value);
static member IsPunctuation : System.Text.Rune -> bool
Public Shared Function IsPunctuation (value As Rune) As Boolean

参数

value
Rune

要计算的 rune。

返回

Boolean

如果 true 是一个标点符号,则为 value;否则为 false

注解

此方法等效于查询GetUnicodeCategory(Rune)结果并将其与任何值ConnectorPunctuationDashPunctuation、、OpenPunctuationClosePunctuationInitialQuotePunctuation、、和FinalQuotePunctuationOtherPunctuation进行比较。

有关详细信息,请参阅 Char.IsPunctuation

适用于