3
如何知道類型是否繼承了其他類型?如何知道類型是否繼承了其他類型?
Type t;
// i get the t from somewhere
bool b = t.IsInhertitedFrom(typeof(BaseType));
如何知道類型是否繼承了其他類型?如何知道類型是否繼承了其他類型?
Type t;
// i get the t from somewhere
bool b = t.IsInhertitedFrom(typeof(BaseType));
布爾B = t.IsSubclassOf(typeof運算(鹼基類型))
並檢查類型實現接口使用:
布爾B = t.GetInterface(typeof運算(IMyInterface的).FullName) != null