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
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
What is application variable in asp.net?
Which protocol is used to call a web service?
What ports must be open for DCOM over a firewall? What is the purpose of Port 135?
What is the default authentication mode for asp.net?
What are the event handlers that can be included in the Global.asax file?
What are client activated objects and server activated objects?
Where are session variables stored?
Explain the concept of event bubbling in ASP.NET?
How is it possible for .NET to support many languages?
What is virtual directory in asp.net?
What is session authentication?
Differentiate between structure and class.
What are the memory-mapped files?
What is the difference between server-side scripting and client-side scripting?