Exemplo n.º 1
0
 public void WriteColor(uint a)
 => buf.AddRange(BitExtensions.GetBytesUInt24(((a & 0xFF) << 16) | (((a >> 8) & 0xFF) << 8) | (a >> 16)));
Exemplo n.º 2
0
 public void WriteUInt24(uint a)
 => buf.AddRange(BitExtensions.GetBytesUInt24(a));