gpt4 book ai didi

c# - 在 C# 中,您可以在 "where"接口(interface)约束中放置一个 Or 吗?

转载 作者:太空狗 更新时间:2023-10-29 22:32:58 24 4
gpt4 key购买 nike

如果我有这个代码:

public interface IJobHelper
{
List<T> FilterwithinOrg<T>(IEnumerable<T> entities) where T : IFilterable;
}

有没有什么支持做这样的事情:

public interface IJobHelper
{
List<T> FilterwithinOrg<T>(IEnumerable<T> entities) where T : IFilterable or ISemiFilterable
}

所以它会接受任何支持两个接口(interface)之一的东西。我基本上是在尝试创建一个过载。

最佳答案

据我所知,您可以使用AND 逻辑而不是OR

AND(在这种情况下,T 必须是 IFilterable and ISemiFilterable)

public interface IJobHelper
{
List<T> FilterwithinOrg<T>(IEnumerable<T> entities) where T : IFilterable, ISemiFilterable
}

关于c# - 在 C# 中,您可以在 "where"接口(interface)约束中放置一个 Or 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16138999/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com