What is the difference between double.Parse(myString) and Double.Parse(myString)? Is there a difference in performance or reasons I should use one but not the other?
What is the difference between double.Parse(myString) and Double.Parse(myString) ? Is there a difference in
Share
doubleis just a language alias forSystem.Double(a class recognized by the CLR), so it should be exactly the same.Are you experiencing a specific problem that would indicate otherwise?