私は悪いプログラミング習慣に関する記事を読んでいました。
言及した-
値を別の表現に変換してから元の位置に戻す「ヨーヨーコード」(例:小数を文字列に変換してから小数に戻す、または文字列をパディングしてからトリミングする)
彼が与えた特定の例がプログラムを書くのに悪い方法である理由を私は理解していません。値を使用できるように状況が必要な場合は、元に戻すことは問題ないようです。
誰でもこれについて説明できますか?
"Roundabout code" that accomplishes in many instructions what could be done with far fewer (eg: rounding a number by converting a decimal into a formatted string, then converting the string back into a decimal)
。if the situation is so that they have to be used?
-それはどんな状況でしょうか?
decimal myValue = decimal.Parse(dataReader["myColumn"].ToString())
私の愛犬です。