Buffer.Add 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 |
|---|---|
| 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.