UnicodeRange.Create(Char, Char) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new UnicodeRange instance from a span of characters.
public:
static System::Text::Unicode::UnicodeRange ^ Create(char firstCharacter, char lastCharacter);
public static System.Text.Unicode.UnicodeRange Create (char firstCharacter, char lastCharacter);
static member Create : char * char -> System.Text.Unicode.UnicodeRange
Public Shared Function Create (firstCharacter As Char, lastCharacter As Char) As UnicodeRange
Parameters
- firstCharacter
- Char
The first character in the range.
- lastCharacter
- Char
The last character in the range.
Returns
A range that includes all characters between firstCharacter
and lastCharacter
.
Exceptions
lastCharacter
precedes firstCharacter
.
Applies to
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.