| Utf8StringAppend Method (Byte, Int32, Int32) |
Appends a byte array containing utf-8 encoded data to this string.
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public void Append(
byte[] value,
int index,
int count
)
Public Sub Append (
value As Byte(),
index As Integer,
count As Integer
)
public:
void Append(
array<unsigned char>^ value,
int index,
int count
)
member Append :
value : byte[] *
index : int *
count : int -> unit
Parameters
- value
- Type: SystemByte
A byte array containing the utf-8 encoded string to append. - index
- Type: SystemInt32
The index in value at which to start copying. - count
- Type: SystemInt32
The number of bytes from value to copy.
See Also