What's the exact difference between the two?
// When calling this method with GetByType<MyClass>()
public bool GetByType<T>() {
// this returns true:
return typeof(T).Equals(typeof(MyClass));
// this returns false:
return typeof(T) is MyClass;
}
typeof(AClass).IsAssignableFrom(typeof(T))will solve that. See msdn.microsoft.com/en-us/library/…. – Will Oct 14 '11 at 9:15