System.Runtime.Serialization.Formatters.Binary.__BinaryWriter.WriteByte C# (CSharp) Method

WriteByte() private method

private WriteByte ( Byte value ) : void
value Byte
return void
        internal void WriteByte(Byte value)
        {
            dataWriter.Write(value);
        }

Usage Example

 // Token: 0x0600529B RID: 21147 RVA: 0x0012227C File Offset: 0x0012047C
 internal static void WriteStringWithCode(string value, __BinaryWriter sout)
 {
     if (value == null)
     {
         sout.WriteByte(17);
         return;
     }
     sout.WriteByte(18);
     sout.WriteString(value);
 }
All Usage Examples Of System.Runtime.Serialization.Formatters.Binary.__BinaryWriter::WriteByte