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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET