> I wanted to know if it is possible to use reflection to get a list of
> all classes that implement a given interface. If not, is it possible
> to get a list of all classes that exist in a given namespace?
Use Assembly.GetTypes() to find all types in a particular assembly, and
use Type.IsAssignableFrom to check for type compatibility with a
particular type.

Signature
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too