找不到扩展方法(不是程序集引用问题)

时间:2012-03-06 11:19:32

标签: c# linq extension-methods

我有以下扩展方法:

public static EntitySet<T> ToEntitySetFromInterface<T, U>(this IList<U> source)
    where T : class, U
{
    var es = new EntitySet<T>();
    IEnumerator<U> ie = source.GetEnumerator();
    while (ie.MoveNext())
    {
        es.Add((T)ie.Current);
    }
    return es;
}

我尝试按如下方式使用它:

   List<IItemMovement> p = new List<IItemMovement>();
    EntitySet<ItemMovement> ims = p.ToEntitySetFromInterface<ItemMovement, IItemMovement>();

其中ItemMovement实现了IItemMovement。编译器抱怨:

  

'System.Collections.Generic.List'不包含   'ToEntitySetFromInterface'的定义,没有扩展方法   'ToEntitySetFromInterface'接受类型的第一个参数   可以找到'System.Collections.Generic.List'(是   你错过了使用指令或程序集引用?)

不,我没错过参考文献。如果我只输入包含弹出方法的静态类的名称,那么扩展方法也是如此。日Thnx

2 个答案:

答案 0 :(得分:2)

此代码适用于我,它是代码的直接副本,减去ItemMovement及其界面,所以这个部分可能有问题吗?

public class TestClient
{
    public static void Main(string[] args)
    {
        var p = new List<IItem>();
        p.Add(new Item { Name = "Aaron" });
        p.Add(new Item { Name = "Jeremy" });

        var ims = p.ToEntitySetFromInterface<Item, IItem>();

        foreach (var itm in ims)
        {
            Console.WriteLine(itm);
        }

        Console.ReadKey(true);
    }
}

public class Item : IItem
{
    public string Name { get; set; }
    public override string ToString()
    {
        return Name;
    }
}

public interface IItem
{
}

public static class ExtMethod
{
    public static EntitySet<T> ToEntitySetFromInterface<T, U>(this IList<U> source) where T : class, U
    {
        var es = new EntitySet<T>();
        IEnumerator<U> ie = source.GetEnumerator();
        while (ie.MoveNext())
        {
            es.Add((T)ie.Current);
        }
        return es;
    }
}

答案 1 :(得分:1)

这部分编译器错误是关键:“没有扩展方法'ToEntitySetFromInterface'接受'System.Collections.Generic.List'类型的第一个参数。”

您的ToEntitySetFromInterface<T,U>扩展程序定义为接受IList<U>,但您尝试使用List<T>而不是IList<T>来调用它。 compliler没有找到你的扩展方法,因为类型不匹配。