J jw56578 Jul 3, 2007 #1 what parameters need to be sent to the Parse method to successfully parse a string in the format of "1.1F"
what parameters need to be sent to the Parse method to successfully parse a string in the format of "1.1F"
C cody Jul 4, 2007 #2 what parameters need to be sent to the Parse method to successfully parse a string in the format of "1.1F" Click to expand... float.Parse() isn't suitable for parsing source code. You have to write your own parser.
what parameters need to be sent to the Parse method to successfully parse a string in the format of "1.1F" Click to expand... float.Parse() isn't suitable for parsing source code. You have to write your own parser.
R Rad [Visual C# MVP] Jul 4, 2007 #3 what parameters need to be sent to the Parse method to successfully parse a string in the format of "1.1F" Click to expand... You could write code to remove the F first before using the plain old parse method
what parameters need to be sent to the Parse method to successfully parse a string in the format of "1.1F" Click to expand... You could write code to remove the F first before using the plain old parse method