Tagged Questions

6
votes
7answers
136 views

Should ToString be used for critical information?

I just came across some code that overrides ToString() and returns some critical information (not just debug information). Users of this type called ToString() and parse that critical data. My ...
1
vote
4answers
298 views

Ideas for good class name

How would you name a class with the following public interface: /// <summary> /// Enqeues and exectutes actions synchronously on seperated threads using the <see cref="ThreadPool"/>. ...