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 http session state?
What is server side routing?
how to pass session value one url to another url.my code if session("user")="abc" then response.redirect("www.abc.com\client\home.aspx") end if. so how to pass value of session in browser url
What does the "EnableViewState" property do? Why would I want it on or off?
What are user controls?
Why is this service branded with windows livetm?
Whats the difference between abstract factory pattern and factory pattern?
What is the caspol.exe tool used for?
What is the difference between runtime version and version?
What is a postback in asp net?
detail code for sql data connections?
What r all the controls in ASP.NET ?