gpt4 book ai didi

c# - 如何定义多个泛型参数的约束

转载 作者:IT王子 更新时间:2023-10-29 04:07:50 26 4
gpt4 key购买 nike

我想知道为什么我不能在谷歌上得到这样简单的东西。此代码不可编译。我该怎么做?

public class TestStep<StartEvent, CompletedEvent> 
where StartEvent : MyBase1, MyInterface1, new() &&
where CompletedEvent : MyBase2, MyInterface2, new()
{
}

请帮忙。

最佳答案

试试不带“&&”

public class TestStep<StartEvent, CompletedEvent> 
where StartEvent : MyBase1, MyInterface1, new()
where CompletedEvent : MyBase2, MyInterface2, new()
{
}

关于c# - 如何定义多个泛型参数的约束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13285924/

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