Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
文字列をdoubleにキャストしようとしていますが、例外をスローしたくないのですが、何らかの値を返します。TryCast関数を見つけましたが、正しく使用していないようです。試してみるTryCast(string, Double)と、「Double」は参照型ではなく値型であると表示されます。私は何が間違っているのですか?
TryCast(string, Double)
Double.TryParse(string, double)
代わりにTryParseメソッドを使用してください。