EncodeUInt64() public static method

public static EncodeUInt64 ( ulong value, byte buffer, int offset ) : void
value ulong
buffer byte
offset int
return void
Example #1
0
 public void ToByteArray(byte[] buffer, int offset = 0)
 {
     for (var i = width - 1; i >= 0; i--)
     {
         Bits.EncodeUInt64(parts[i], buffer, offset);
         offset += 8;
     }
 }