Finding a good name sometimes seems so hard.

In Power Collections, we are going to want to provide a bunch of static methods that implement useful algorithms on collection interfaces (sort of STL-like). Stuff like “LargestElement“, “Sort“, “Shuffle“, and so forth. (By the way, feel free to proposed ideas for these in the forums or in feedback).

Unlike C++, though, all these static methods need to live in a class, and you need to type that class name every time you use one of those functions. Ideally, this class should have a name is easy to remember, makes sense, and (most difficult of all) is fairly short in length.

Ideas I've had include “Collection”, “Collections”, “Algorithms”. Do you like these? Do you have some better ideas?