Edit

Share via


UnicodeFunctions.TryDecompose Method

Definition

Overloads

Name Description
TryDecompose(Int32, Int32, Int32)

Attempts to decompose a Unicode code point into two code points.

TryDecompose(UInt32, UInt32, UInt32)

Attempts to decompose a Unicode code point into two code points.

TryDecompose(Int32, Int32, Int32)

Attempts to decompose a Unicode code point into two code points.

public bool TryDecompose(int ab, out int a, out int b);

Parameters

ab
Int32

The Unicode code point to decompose.

a
Int32

When this method returns, contains the first component of the decomposition if successful.

b
Int32

When this method returns, contains the second component of the decomposition if successful.

Returns

true if the code point was successfully decomposed; otherwise, false.

Applies to

TryDecompose(UInt32, UInt32, UInt32)

Attempts to decompose a Unicode code point into two code points.

public bool TryDecompose(uint ab, out uint a, out uint b);

Parameters

ab
UInt32

The Unicode code point to decompose.

a
UInt32

When this method returns, contains the first component of the decomposition if successful.

b
UInt32

When this method returns, contains the second component of the decomposition if successful.

Returns

true if the code point was successfully decomposed; otherwise, false.

Applies to