UnicodeFunctions.TryCompose 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.
Overloads
| Name | Description |
|---|---|
| TryCompose(Int32, Int32, Int32) |
Attempts to compose two Unicode code points into a single code point. |
| TryCompose(UInt32, UInt32, UInt32) |
Attempts to compose two Unicode code points into a single code point. |
TryCompose(Int32, Int32, Int32)
Attempts to compose two Unicode code points into a single code point.
public bool TryCompose(int a, int b, out int ab);
Parameters
- a
- Int32
The first Unicode code point to compose.
- b
- Int32
The second Unicode code point to compose.
- ab
- Int32
When this method returns, contains the composed Unicode code point if successful.
Returns
true if the code points were successfully composed; otherwise, false.
Applies to
TryCompose(UInt32, UInt32, UInt32)
Attempts to compose two Unicode code points into a single code point.
public bool TryCompose(uint a, uint b, out uint ab);
Parameters
- a
- UInt32
The first Unicode code point to compose.
- b
- UInt32
The second Unicode code point to compose.
- ab
- UInt32
When this method returns, contains the composed Unicode code point if successful.
Returns
true if the code points were successfully composed; otherwise, false.