WriteChars Method
WriteChars(String)
Writes each char
of the value
with WriteChar(Char) method to this serialization output
Declaration
void WriteChars(string value)
Parameters
String | value | the value to be encoded |
Remarks
This method has the same effect with the following code;
foreach (var ch in value)
{
WriteChar(ch);
}