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
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.