Tagged Questions

10
votes
8answers
528 views

C# - How to intelligently & safely convert a Double to String?

Trying not to repeat myself (to be DRY) here, help me out. =) I have a double which represents a rating / 5. The possible values are: 0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5. I want to convert ...
4
votes
5answers
198 views

Accepted practice for converting an Object to and from a String in Java?

What is the commonly accepted method for converting arbitrary objects to and from their String representations, assuming that the exact class of the object is known ? In other words, I need to ...