40

なぜこのような単純なものをグーグルで手に入れることができないのだろうと思っています。このコードはコンパイルできません。これどうやってするの?

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

助けてください。

4

1 に答える 1

69

「&&」なしで試してください

public class TestStep<StartEvent, CompletedEvent> 
    where StartEvent : MyBase1, MyInterface1, new()
    where CompletedEvent : MyBase2, MyInterface2, new()
{
}
于 2012-11-08T09:19:04.973 に答える