Malfunction
Well-known member
Im trying to translate this VB declaration:
Private Const WM_NCPAINT As Integer = &H85 into C#:
private const int WM_NCPAINT = &H85;
Honestly I dont know what type of number format that &H85 is so Im having trouble converting the code.
Private Const WM_NCPAINT As Integer = &H85 into C#:
private const int WM_NCPAINT = &H85;
Honestly I dont know what type of number format that &H85 is so Im having trouble converting the code.