次の文字列があります: "3.39112632978e+001" これを float に変換する必要があります。WolframAlpha は、この値の結果が 33.9112632978 であることを示しています。
Single.Parse("3.39112632978e+001") gives 3.39112624E+12
Double.Parse("3.39112632978e+001") gives 3391126329780.0
float.Parse("3.39112632978e+001") gives 3.39112624E+12
私は何をすべきか?