Hello guys
i want get one value of my enum and then converted into hex
but i got a warning
Warning 1 Runtime errors might occur when converting 'String' to 'System.IFormatProvider'
for example
Public enum myenum
myvalue =0
end enum
sub mysub()
console.writeline( myenum.myvalue.tostring("X2"))
end sub
How can i do something like this?
also i have one function that return
Return hexvalue.ToString("X2")
is any problem with that?
give me your lights :)