Edit

Share via


Buffer.AddCodepoints Method

Definition

Overloads

AddCodepoints(ReadOnlySpan<Int32>)

public void AddCodepoints(ReadOnlySpan<int> text);

Parameters

Applies to

AddCodepoints(ReadOnlySpan<UInt32>)

Appends characters from the span to the buffer.

public void AddCodepoints(ReadOnlySpan<uint> text);

Parameters

text
ReadOnlySpan<UInt32>

The span of Unicode code points to append.

Remarks

This function does not check the validity of the characters.

Applies to

AddCodepoints(IntPtr, Int32)

public void AddCodepoints(IntPtr text, int textLength);

Parameters

text
IntPtr
textLength
Int32

Applies to

AddCodepoints(ReadOnlySpan<Int32>, Int32, Int32)

public void AddCodepoints(ReadOnlySpan<int> text, int itemOffset, int itemLength);

Parameters

itemOffset
Int32
itemLength
Int32

Applies to

AddCodepoints(ReadOnlySpan<UInt32>, Int32, Int32)

public void AddCodepoints(ReadOnlySpan<uint> text, int itemOffset, int itemLength);

Parameters

itemOffset
Int32
itemLength
Int32

Applies to

AddCodepoints(IntPtr, Int32, Int32, Int32)

public void AddCodepoints(IntPtr text, int textLength, int itemOffset, int itemLength);

Parameters

text
IntPtr
textLength
Int32
itemOffset
Int32
itemLength
Int32

Applies to