Rune.IsDigit(Rune) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,指出指定的 rune 是否分類為十進位數字。
public:
static bool IsDigit(System::Text::Rune value);
public static bool IsDigit (System.Text.Rune value);
static member IsDigit : System.Text.Rune -> bool
Public Shared Function IsDigit (value As Rune) As Boolean
參數
- value
- Rune
要評估的 rune。
傳回
當 true
是十進位數字時為 value
,否則為 false
。
備註
這個方法相當於查詢 GetUnicodeCategory(Rune) 和比較結果與 DecimalDigitNumber 。
如需詳細資訊,請參閱Char.IsDigit。