0

別のクラスから継承する一般的な制約を持つクラスを作成しようとしています - コンパイル エラーが発生しています:

  public  class  BaseEntityController<T> where T : BaseEntity  : BaseController
    {

    }

このコードはコンパイルされません - 「予期しないトークン エラー」が発生します。これを行う方法はありますか?

4

2 に答える 2

5

これを試して:

public class BaseEntityController<T> : BaseController where T : BaseEntity
{
}
于 2013-07-10T15:35:27.933 に答える
2

どうですか

public  class  BaseEntityController<T> : BaseController where T : BaseEntity
{

}
于 2013-07-10T15:36:01.150 に答える