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
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.