Rune 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Rune(Char) |
從提供的 UTF-16 程式碼單位建立 Rune。 |
Rune(Int32) |
從表示 Unicode 純量值的指定 32 位元整數建立 Rune。 |
Rune(UInt32) |
從表示 Unicode 純量值的指定 32 位元不帶正負號整數建立 Rune。 |
Rune(Char, Char) |
從提供的 UTF-16 代理字組建立 Rune。 |
Rune(Char)
Rune(Int32)
Rune(UInt32)
重要
此 API 不符合 CLS 規範。
從表示 Unicode 純量值的指定 32 位元不帶正負號整數建立 Rune。
public:
Rune(System::UInt32 value);
[System.CLSCompliant(false)]
public Rune (uint value);
[<System.CLSCompliant(false)>]
new System.Text.Rune : uint32 -> System.Text.Rune
Public Sub New (value As UInteger)
參數
- value
- UInt32
Unicode 純量值。
- 屬性
例外狀況
value
不表示 Unicode 純量值。
適用於
Rune(Char, Char)
從提供的 UTF-16 代理字組建立 Rune。
public:
Rune(char highSurrogate, char lowSurrogate);
public Rune (char highSurrogate, char lowSurrogate);
new System.Text.Rune : char * char -> System.Text.Rune
Public Sub New (highSurrogate As Char, lowSurrogate As Char)
參數
- highSurrogate
- Char
代理字組的高代理字元。
- lowSurrogate
- Char
代理字組的低代理字元。
例外狀況
highSurrogate
不表示 UTF-16 高代理字元字碼指標。
-或-
lowSurrogate
不表示 UTF-16 低代理字元字碼指標。