我正在阅读一些 VB6 以转换为 C#。这条线是什么意思?0&
相当于IntPtr.Zero
?_
//'Get a Device context
hdc = GetDC(0&)
这个值用于 pinvoke,所以我不确定是否IntPtr.Zero
有意义,因为我们需要选择一些对象。
OldFont = SelectObject(hdc, ObjFont)
注意,ObjFont 通过
//'Get the Window's font
ObjFont = SendMessage(hwnd, WM_GETFONT, 0, 0&)//there's that mysterious 0& agaain.