How do I check if class inherits from my class DataSource (abstract class).
here is what I got:
var q = from t in Assembly.Load(new AssemblyName("DefaultDataSources")).GetTypes()
where t.IsClass
select t;
I don't know what condition to add :(