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
What is application in asp net?
What does passport and windows authentication mean in ASP.NET?
What is the difference between custom web user control and a custom web server control?
How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?
Where can I get information on cookies in asp.net?
What is the life-span of the items in the viewstate?
What are the types of validation in asp net?
How can I configure asp.net applications that are running on a remote machine?
What is preprocessor in .net?
Define caching.
What is the base class from which web forms are inherited?
How do we ensure view state has not tampered?
How to unit test Web API?
Explain how viewstate is being formed?
What are assemblies and namespaces and explain the difference between them ?