Type.IsSubclassOf 在 UWP 中
Type.IsSubclassOf in UWP
所以我正在将库从 .NET 4.5.1 移植到 UWP。
在库中,我们使用类型 class 的方法,特别是 Type.IsSubclassOf。但是在UWP中我找不到任何等效的方法。
有什么方法可以找到 UWP 中某些 class 是其他 class 的子class 吗?
部分 Type
逻辑被移动到 Windows 运行时中的 TypeInfo
(MSDN)。
using System.Reflection;
...
bool isSubClassOf = typeof (Dog).GetTypeInfo().IsSubclassOf(typeof (Animal));
所以我正在将库从 .NET 4.5.1 移植到 UWP。
在库中,我们使用类型 class 的方法,特别是 Type.IsSubclassOf。但是在UWP中我找不到任何等效的方法。
有什么方法可以找到 UWP 中某些 class 是其他 class 的子class 吗?
部分 Type
逻辑被移动到 Windows 运行时中的 TypeInfo
(MSDN)。
using System.Reflection;
...
bool isSubClassOf = typeof (Dog).GetTypeInfo().IsSubclassOf(typeof (Animal));