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.
event aggregator を使用して発生したイベントのサブスクリプションの数を制限する必要があります。これを達成するにはどうすればよいですか?
イベントの方法をチェックインできInvocationList.Countます。add
InvocationList.Count
add
このようなもの:
private EventHandler MyEventDel; public event EventHandler ExplicitEvent { add { if (MyEventDel.GetInvocationList().Count() < 10) { MyEventDel+= value; } } remove { MyEventDel-= value; } }