我有一个基类 Base,以及从它继承的 A/B 类。
public class Base
{
int x;
}
public class A : Base
{
int y;
}
public class B : Base
{
int z;
}
我尝试使用 OfType 过滤我需要的唯一对象,如下所示:
public static void RunSnippet()
{
Base xbase; A a; B b;
IEnumerable<Base> list = new List<Base>() {xbase, a, b};
Base f = list.OfType<A>; // I need to get only the object A
Console.WriteLine(f);
}
当我编译代码时,我得到了这个错误:
错误 CS0428:无法将方法组“OfType”转换为非委托类型“Base”。您是否打算调用该方法?
代码有什么问题?