I get all classes that inherit from my abstract base class like this:
Assembly myAssembly = Assembly.GetExecutingAssembly();
var classesThatInheritFromBase = myAssembly.GetTypes().Where(x => x.BaseType ==
typeof(BaseClass));
Now can I somehow get all/any instances of all these classes? Does this still belong to reflection?