确定类 x 是否派生自类 y 的最简单方法? (c#)
这是确定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想不出更简单的方法:)
(并以“答案”格式取悦巨魔:“是”)
I can't think of a simpler way :)
(and in 'answer' format, to please the trolls: "Yes")