Edit

Share via


UnicodeFunctions.TryCompose Method

Definition

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.

Applies to