How to Convert a String into Float without using any built-
in library of .NET
String = "1235.45" needs to converted to a float
Answer Posted / lince
string str = "555.67";
double a;
a=Convert.ToDouble (str);
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What’s the difference between response .redirect and server.transfer?
What is the equivalent of date() and time() in asp.net?
What is strong-typing versus weak-typing?
Is data edited in the Repeater control?
What is asp net theme?
How do you secure your connection string information?
What symbol would you use to denote, the start of a code block in aspx views?
Describe the Server Control Events of ASP.NET?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
What’s the difference between asp.net web forms and asp.net mvc?
What is the purpose of url encoding?
How can u debug your .net application?
Describe the sequence of action takes place on the server when ASP.NET application starts first time?
What is viewstategenerator?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?