我有这个扩展
方法:
public static T Foo<T>(this Object current) where T : class,new()
{
...
}
是否可以从“this Object current”中排除原始类型和IEnumerable接口?
Editet@H_404_7@我的问题不是重复,因为在建议的问题中,问题是在重载方法之间的参数冲突.作者问,是否有可能从一种方法中排除String类型,以便为另一种方法选择它.这个问题的有用答案对我没有帮助
你不能.没有可用于此类事物的泛型类型约束.一个选项可能是指定一个
标记为过时的
方法:
[Obsolete("Do not use with IEnumerable!",true)]
public static T Foo<T>(this IEnumerable current) where T : class,new()
{
...
}
你明白这个清单会变得无穷无尽.另一种选择是Roslyn代码分析器,它会检查代码中是否存在不允许的组合,但这可能有点过分.
原文链接:https://www.f2er.com/csharp/91407.html