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
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.