F
friend
Hello all,
Is there any way to convert an ascii string to decimal.
Thanks to everyone
Is there any way to convert an ascii string to decimal.
Thanks to everyone
friend said:Is there any way to convert an ascii string to decimal.
You mean something as
dim Ten = CDec("10")
Cor
You mean something as
dim Ten = CDec("10")
Cor
friend said:for example I get the input from remote host something like this : "Ä"
or some other character "Ì" or "Œ"
I want to convert this character to decimal and check the bits.
Hello all,
Is there any way to convert an ascii string to decimal.
Thanks to everyone
Decimal.Parse or Decimal.TryParse.
I prefere TryParse because it returns a boolean value to indicate successor
failure rather then throw an exception.