Edit

Share via


Buffer.Add Method

Definition

Overloads

Name Description
Add(Int32, Int32)

Appends a character with the Unicode value and gives it the initial cluster value.

Add(UInt32, UInt32)

Appends a character with the Unicode value and gives it the initial cluster value.

Add(Int32, Int32)

Appends a character with the Unicode value and gives it the initial cluster value.

public void Add(int codepoint, int cluster);

Parameters

codepoint
Int32

The Unicode code point.

cluster
Int32

The cluster value of the code point.

Remarks

This function does not check the validity of the codepoint.

Applies to

Add(UInt32, UInt32)

Appends a character with the Unicode value and gives it the initial cluster value.

public void Add(uint codepoint, uint cluster);

Parameters

codepoint
UInt32

The Unicode code point.

cluster
UInt32

The cluster value of the code point.

Remarks

This function does not check the validity of the codepoint.

Applies to