CSharp examples for System:Byte
Make an short from 2-bytes.
public class Main{ /// <summary> /// Make an short from 2-bytes. /// </summary> public static short MakeWord(byte low, byte high) => (short)(low | (ushort)(high << 8)); }