Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの C# ファイルが必要です。
EventDel.cs:
EventDel.cs
public delegate void EventDel(DocdEvent event);
HBE.cs次のフィールドが含まれています。
HBE.cs
public EventDel<ME> toCatchOne {get; set; }
次のエラーが表示されます。
Delegate does not have type parameters.
どうすれば解決できますか?
デリゲートは一般的ではないようです。HBE.cs 内でこれを試してください。
public EventDel toCatchOne {get; set; }
または、これは EventDel.cs 内にあります。
public delegate void EventDel<HBE>(DocdEvent event);