确定类 x 是否派生自类 y 的最简单方法? (c#)

发布于 2024-11-05 19:46:28 字数 266 浏览 2 评论 0原文

这是确定 foo 是否相同或从类型 T 派生的最简单方法

bool Derives<T>(object foo)
{
  return foo is T;
}

,并且完全匹配将是

bool ExactMatch<T>(object foo)
{
  return foo.GetType() == typeof(T);
}

Is this the simplest way to determine if foo is the same or derived from type T

bool Derives<T>(object foo)
{
  return foo is T;
}

and an exact match would be

bool ExactMatch<T>(object foo)
{
  return foo.GetType() == typeof(T);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉墨 2024-11-12 19:46:28

我想不出更简单的方法:)

(并以“答案”格式取悦巨魔:“是”)

I can't think of a simpler way :)

(and in 'answer' format, to please the trolls: "Yes")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文