C#高低位

在c的写法是这样  
  xPos   =   LOWORD(lParam);   //   horizontal   position   of   cursor    
  yPos   =   HIWORD(lParam);   //   vertical   position   of   cursor    
   
   
   
  c#中是这样  
  int   xPos   =   lParam.ToInt32()   &   0x00001111;  
  int   yPos   =   (lParam.ToInt32()   &   0x11110000)   >>   16;    

你可能感兴趣的:(C++,c,C#)