Tagged Questions

0
votes
0answers
7 views

Settable collection properties:

Framework Design Guidelines gives this advice: DO NOT provide settable collection properties. But if I don't, I can't see a way to XML serialize anything with a collection property. The …
4
votes
2answers
579 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.