CSharp examples for System:Byte
The return value is the low-order byte of the specified value.
public class Main{ /// <summary> /// The return value is the low-order byte of the specified value. /// </summary> public static byte LoByte(this short pWord) => (byte)pWord; }