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 / 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 |
Post New Answer View All Answers
How can you handle exceptions in asp.net?
How you will manage the state of ASP.NET controls?
What is owin authentication?
What is anonymous authentication?
How do you handle server controls?
What is session and cookies in asp.net?
What is AutoEventWireup attribute for ?
What is the difference between union and structure?
What are sql joins?
Which dll handles the request of .aspx page?
Describe the master page.
What are the new navigation controls in asp.net 2.0?
Explain server-side scripting and client-side scripting.
How do you implement postback with a text box?
How can we use Web API with ASP.NET Web Form?