共用方式為


UnicodeRange(Int32, Int32) 建構函式

定義

建立新的 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。

備註

lengthfirstCodePoint + - 1 之間的 firstCodePoint 任何未定義程式碼點都包含在藉由呼叫這個建構函式所建立的 UnicodeRange 實例中。

適用於