我不明白为什么以下代码无法编译:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1 {
public interface ITestCondition<T> {
}
public class TestConditionBase<T>: ITestCondition<T> {
}
public class TestCondition<T>: TestConditionBase<T> {
}
public static class TestConditionExtension {
public static V Foo<V, T>(this V condition) where V: ITestCondition<T> {
return condition;
}
}
class Program {
static void Main(string[] args) {
new TestCondition<int>().Foo();
}
}
}
它说它找不到“foo”。但它在没有泛型类型的情况下完美运行。