EncodeUInt16() public static method

public static EncodeUInt16 ( uint value, byte buffer, int offset ) : void
value uint
buffer byte
offset int
return void
Ejemplo n.º 1
0
 public static unsafe void EncodeUInt16(uint value, byte[] buffer, int offset)
 {
     fixed(byte *bufferPtr = buffer)
     {
         BinaryConverter.EncodeUInt16(value, bufferPtr, offset);
     }
 }