예제 #1
0
 /// <summary>
 /// Writes a 64-bit signed integer to the stream, using the bit converter
 /// for this writer. 8 bytes are written.
 /// </summary>
 /// <param name="value">The value to write</param>
 internal void Write(long value)
 {
     BigEndianBitConverter.CopyBytes(value, buffer, 0);
     WriteInternal(buffer, 8);
 }