I have a variable IntPtr
with value, ex IntPtr I
is 01x0712314
.
How I can show "01x0712314"
of variable above to label, textbox or set value to variable string A in C#
I had try with .ToString()
, Int a = (int)I
. all value after convert from 01x0712314
is 723523
(I want is 01x0712314
)
Thanks for any idea.