assign constant int using hex value
assigning a constant variable using a hex value works in VB.NET and naturally in C++.
vb.net:
Const CONST_VAR As Integer = &H10 ' hex value assigned to const integer
For some I cannot find a C# solution for this? Any ideas? Thanks.

