gpt4 book ai didi

c# - C# Metro 风格中 IsSubclassOf 或 IsAssignableFrom 的任何替代方案

转载 作者:IT王子 更新时间:2023-10-29 04:04:30 28 4
gpt4 key购买 nike

在 C# Metro 风格中,IsSubclassOfIsAssignableFrom 是否有任何替代方案?

我试图让这段代码在 Metro 上运行,但找不到替代方案。

if ((ui.GetType() == type) || (ui.GetType().IsSubclassOf(type)))
{
return true;
}

最佳答案

许多反射方法都可以在 System.Reflection.TypeInfo 类中找到。

您可以使用 System.Reflection.IntrospectionExtensions 提供的 GetTypeInfo 扩展方法为您的 Type 获取 TypeInfo 的实例:

using System.Reflection;

// ...

ui.GetType().GetTypeInfo().IsSubclassOf(type)

关于c# - C# Metro 风格中 IsSubclassOf 或 IsAssignableFrom 的任何替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8729993/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com