AsmResolver.OutputStreamExtensions.WriteBytes C# (CSharp) Method

WriteBytes() public static method

Writes a buffer of data to the stream.
public static WriteBytes ( this writer, byte buffer ) : void
writer this The writer to use.
buffer byte The data to write.
return void
        public static void WriteBytes(this IBinaryStreamWriter writer, byte[] buffer)
        {
            writer.WriteBytes(buffer, buffer.Length);
        }