Tagged Questions
6
votes
7answers
134 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 ...
4
votes
2answers
1k views
Why are Array.Sort() and Array.IndexOf() methods static?
Always was interested why are Array.Sort() and Array.IndexOf() methods made static and similar ArrayList.Sort() and ArrayList.IndexOf() are designed as member methods. Thank you for any ideas.
1
vote
4answers
282 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"/>.
...