Rune.IsPunctuation(Rune) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,指出指定的 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。
傳回
當 true
是標點符號時為 value
,否則為 false
。
備註
這個方法相當於查詢 GetUnicodeCategory(Rune) 和比較結果與任何值 ConnectorPunctuation 、 DashPunctuation 、、 OpenPunctuation 、 ClosePunctuation 、 InitialQuotePunctuation 、 FinalQuotePunctuation 和 OtherPunctuation 。
如需詳細資訊,請參閱Char.IsPunctuation。