Ejemplo n.º 1
0
 public static ResizableArray <Byte> WriteDoubleBEToBytes(this ResizableArray <Byte> array, ref Int32 idx, Double value)
 {
     return(array.WriteInt64BEToBytes(ref idx, BitConverter.DoubleToInt64Bits(value)));
 }
Ejemplo n.º 2
0
 public static ResizableArray <Byte> WriteUInt64BEToBytesNoRef(this ResizableArray <Byte> array, Int32 idx, UInt64 value)
 {
     return(array.WriteInt64BEToBytes(ref idx, (Int64)value));
 }