有没有办法在C#中表达这个想法? (基本上是通用类型的泛型类型)?
public static class ExtensionSpike
{
public static IEnumerable<T> Where<TCollection<T>>(this TCollection<T> sourceCollection, Expression<Func<T, bool>> expr)
where TCollection : class, IEnumerable<T>, INotifyCollectionChanged
{
throw new NotImplementedException();
}
}
答案 0 :(得分:5)
通用约束可能不是你想要的,但这基本上是你想要的吗?这会将TCollection约束为IEnumerable<T>
(尽管IEnumerable可以替换为List / Collection / Etc ......)
public static IEnumerable<T> Where<T, TCollection>(this TCollection sourceCollection, Expression<Func<T, bool>> expr)
where TCollection : IEnumerable<T>, INotifyPropertyChanged
{
throw new NotImplementedException();
}
更新:刚刚更改了我的示例,以便更好地遵循该方法 - 我一直很困惑,并没有意识到你想要一个Where()
方法,我认为这是你的generic-constraint where
。