Partager via


UnicodeRange(Int32, Int32) Constructeur

Définition

Crée un UnicodeRange qui inclut un nombre spécifié de caractères à partir d’un point de code Unicode spécifié.

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)

Paramètres

firstCodePoint
Int32

Premier point de code dans la plage.

length
Int32

Nombre de points de code dans la plage.

Exceptions

firstCodePoint est inférieur à zéro ou supérieur à 0xFFFF.

- ou -

length est inférieur à zéro.

- ou -

firstCodePoint plus length est supérieur à 0xFFFF.

Remarques

Tous les points de code non définis entre firstCodePoint et firstCodePoint + length - 1 sont inclus dans l’instance UnicodeRange créée en appelant ce constructeur.

S’applique à