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