Avro.BinaryEncoder.WriteBytes C# (CSharp) 메소드

WriteBytes() 공개 메소드

Bytes are encoded as a long followed by that many bytes of data.
public WriteBytes ( Stream Stream, byte value ) : void
Stream Stream
value byte
리턴 void
        public void WriteBytes(Stream Stream, byte[] value)
        {
            WriteLong(Stream, value.Length);
            write(Stream, value);
        }
        /// <summary>