What is VB's Integer &H85 in C#?

Malfunction

Junior Contributor
Joined
Dec 8, 2003
Messages
203
Location
Berlin, Germany
I'm trying to translate this VB declaration:
Private Const WM_NCPAINT As Integer = &H85 into C#:
private const int WM_NCPAINT = &H85;
Honestly I don't know what type of number format that &H85 is so I'm having trouble converting the code.
 
Back
Top