标签: reflection types uwp
我正在开发一款win 10应用程序。我想知道Type的BaseType。如何在uwp中使用Reflection。 谢谢。
答案 0 :(得分:5)
您可以使用GetTypeInfo扩展方法获取BaceType。
GetTypeInfo
Type t = typeof(int); Type baseType = t.GetTypeInfo().BaseType; // Returns System.ValueType