.NET Client Documentation
5.5.0
Search Results for

    Show / Hide Table of Contents

    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);
    }
    In this article
    Back to top Copyright © 2010-2024 Hazelcast, Inc. All rights reserved.
    Generated by DocFX.