CSharp examples for System:Byte
The return value is the high-order double word of the specified value.
public class Main{ /// <summary> /// The return value is the high-order double word of the specified value. /// </summary> public static int HiDword(this long pDWord) => (int)((pDWord >> 32) & 0xFFFFFFFF); }