Bietet Reflexion in C#
eine Möglichkeit festzustellen, ob ein bestimmter System.Type
ein bestimmtes Interface modelliert?
public interface IMyInterface {}
public class MyType : IMyInterface {}
// sollte 'true' ergeben
typeof(MyType)./* ????? */MODELS_INTERFACE(IMyInterface);