hexedecimal in C#
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hi guys, In VB the representation for hexedecimal is &H1 . How do you write this in C# . Please help. i'm running out of time.
-
Hi guys, In VB the representation for hexedecimal is &H1 . How do you write this in C# . Please help. i'm running out of time.
Hi! Like C/C++, C# uses '0x' as prefix for hex numbers, for example 16 = 0x10. mav