UInt32_To_LE() static private method

static private UInt32_To_LE ( uint n, byte bs ) : void
n uint
bs byte
return void
Exemplo n.º 1
0
 private void PackBlock(
     byte[] bytes,
     int off)
 {
     Pack.UInt32_To_LE(C0, bytes, off);
     Pack.UInt32_To_LE(C1, bytes, off + 4);
     Pack.UInt32_To_LE(C2, bytes, off + 8);
     Pack.UInt32_To_LE(C3, bytes, off + 12);
 }