提问者:小点点

返回与泛型中的输入类型相同的实例类型


尝试了以下代码:

public static T NotEmpty<T, X> (T instance, string paramName = null) where T : IEnumerable<X>
{
    if (instance != null)
        if (instance.Any ())
            return instance;

    throw new Exception ();
}

static void Main (string[] args)
{
    var list = new List<int> () { 1, 2, 3 };
    var t = NotEmpty (list);
}

编辑:所以我希望传递任何实现IEnumerable的类型,如list<;int>;,并返回相同类型的实例(list<;int>;)。

错误:var t=NotEmpty(list);无法从用法推断方法noname.program.NotEmpty(t,string)的类型参数。请尝试显式指定类型参数。


共1个答案

匿名用户

我相信您不需要两个泛型参数。可以将T替换为IEnumerable

public static IEnumerable<T> NotEmpty<T> (IEnumerable<T> instance, string paramName = null)
{
    if (instance != null && instance.Any())
        return instance;

    throw new Exception ();
}

演示。