Thiru LogsAll FAQs
.NET & C# ยท C#

What is a common mistake with delegates and events in C#?

IntermediateUpdated 2026-08-08

A common mistake is keeping event subscriptions alive longer than the subscriber, which can prevent garbage collection.

#csharp#delegates and events