UnicodeRange(Int32, Int32) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
建立新的 UnicodeRange,其中包含從指定 Unicode 字碼指標開始的指定字元數。
public:
UnicodeRange(int firstCodePoint, int length);
public UnicodeRange (int firstCodePoint, int length);
new System.Text.Unicode.UnicodeRange : int * int -> System.Text.Unicode.UnicodeRange
Public Sub New (firstCodePoint As Integer, length As Integer)
參數
- firstCodePoint
- Int32
範圍中的第一個字碼指標。
- length
- Int32
範圍中的字碼指標數。
例外狀況
firstCodePoint
小於零或大於 0xFFFF。
-或-
length
小於零。
-或-
firstCodePoint
加上 length
大於 0xFFFF。
備註
和 length
firstCodePoint
+ - 1 之間的 firstCodePoint
任何未定義程式碼點都包含在藉由呼叫這個建構函式所建立的 UnicodeRange 實例中。