나는 나쁜 프로그래밍 관행에 관한 기사를 읽고 있었다 .
그것은 언급했다-
값을 다른 표현으로 변환 한 다음 다시 시작 위치로 변환하는 "요요 코드"(예 : 10 진수를 문자열로 변환 한 다음 다시 10 진수로 변환하거나 문자열을 채운 후 자르기)
그가 제공하는 특정 예가 왜 프로그램을 작성하는 나쁜 방법인지 이해할 수 없습니다. 상황에 따라 값을 사용할 수 있도록 변환하는 것이 좋습니다.
누구든지 이것에 대해 더 설명 할 수 있습니까?
"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())
내 애완 동물의 피브입니다.