Beispiel #1
0
 /// <summary>
 /// Writes a UTF-8 string to the byte stream.
 /// The length of the UTF-8 string in bytes is written first, as a 16-bit integer, followed by
 /// the bytes representing the characters of the string.
 /// </summary>
 /// <param name="value"></param>
 public void WriteUTF(string value)
 {
     _dataOutput.WriteUTF(value);
 }