CompareInfo.IsSortable 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出指定的 Unicode 字元或字串是否可排序。
多載
IsSortable(Rune) |
指出指定的 Rune 是否可排序。 |
IsSortable(String) |
指出指定的 Unicode 字串是否可排序。 |
IsSortable(ReadOnlySpan<Char>) |
指出指定的 Unicode 只讀字元範圍是否可排序。 |
IsSortable(Char) |
指出指定的 Unicode 字元是否可排序。 |
IsSortable(Rune)
指出指定的 Rune 是否可排序。
public:
static bool IsSortable(System::Text::Rune value);
public static bool IsSortable (System.Text.Rune value);
static member IsSortable : System.Text.Rune -> bool
Public Shared Function IsSortable (value As Rune) As Boolean
參數
- value
- Rune
Unicode 純量值。
傳回
若 value
是可排序的 Unicode 純量值,則為 true
;否則為 false
。
適用於
IsSortable(String)
指出指定的 Unicode 字串是否可排序。
public:
static bool IsSortable(System::String ^ text);
public static bool IsSortable (string text);
[System.Runtime.InteropServices.ComVisible(false)]
public static bool IsSortable (string text);
static member IsSortable : string -> bool
[<System.Runtime.InteropServices.ComVisible(false)>]
static member IsSortable : string -> bool
Public Shared Function IsSortable (text As String) As Boolean
參數
- text
- String
零或更多 Unicode 字元的字串。
傳回
如果 str
參數不是空字串 (""),且 str
中所有的 Unicode 字元都是可排序的,則為 true
,否則為 false
。
- 屬性
例外狀況
str
為 null
。
備註
參數中的每個 str
Unicode 字元都會以一或多個 UTF-16 編碼 Char 物件表示。 如果每個 Unicode 字元都定義在內部CompareInfo類別排序表中,而且不是私用使用或未配對的高或低 Surrogate 字元,則str
參數是可排序的。
適用於
IsSortable(ReadOnlySpan<Char>)
指出指定的 Unicode 只讀字元範圍是否可排序。
public:
static bool IsSortable(ReadOnlySpan<char> text);
public static bool IsSortable (ReadOnlySpan<char> text);
static member IsSortable : ReadOnlySpan<char> -> bool
Public Shared Function IsSortable (text As ReadOnlySpan(Of Char)) As Boolean
參數
- text
- ReadOnlySpan<Char>
零個或多個 Unicode 字元的唯讀範圍。
傳回
若 text
不是空白,則為 true
;否則為 false
。
適用於
IsSortable(Char)
指出指定的 Unicode 字元是否可排序。
public:
static bool IsSortable(char ch);
public static bool IsSortable (char ch);
[System.Runtime.InteropServices.ComVisible(false)]
public static bool IsSortable (char ch);
static member IsSortable : char -> bool
[<System.Runtime.InteropServices.ComVisible(false)>]
static member IsSortable : char -> bool
Public Shared Function IsSortable (ch As Char) As Boolean
參數
- ch
- Char
Unicode 字元。
傳回
如果 ch
參數可排序,則為 true
,否則為 false
。
- 屬性
備註
ch
如果參數是在內部CompareInfo類別排序數據表中定義的 Unicode 字元,而且不是私用或未配對的高或低 Surrogate 字元,則參數是可排序的。