How to Convert a String into Float without using any built-
in library of .NET
String = "1235.45" needs to converted to a float
Answers were Sorted based on User's Feedback
Answer / j.d.babu
We can Directly Assign String To the Double Object
Dim Str As String = "1235.45"
Dim Ifloat As Double = Str
Is This Answer Correct ? | 6 Yes | 7 No |
Answer / lince
string str = "555.67";
double a;
a=Convert.ToDouble (str);
Is This Answer Correct ? | 1 Yes | 4 No |
What is intrinsic objects in asp.net?
What event fired during, when datagrid click?
What is viewstate information stored?
Features in ASP.NET ?
what is roles in asp.net
Explain serialization and deserialization?
What is the difference between application state and session state in asp net?
Can we use multiple forms in single asp.net application?
Explain the differences between Server-side and Client-side code?
Is it possible to create web application with both webforms and mvc?
What is WCF? Pls Explain clearly with exmple.
What is session handling in a webfarm, how it can work with its limits?