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

Malfunction

Well-known member
Joined
Dec 8, 2003
Messages
203
Location
Berlin, Germany
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.
 
The vb to c# conversion tool Instant C# gives:

private const int WM_NCPAINT = 0X85;
 
Back
Top