Introduction to .NET Events and Event- Handlers
Introduction
Our physical world is surrounded by events e.g. Door Opened, Engine Started, Plane landed etc and we see events in the virtual world as well e.g. email received, friend-request sent, post liked etc. This is a very common concept, many programming languages support this and in this post we will see that how we can use events in .NET applications.
Events are part of .NET Framework and can be used for notification purposes inside your code. I will suggest you to use this functionality as it will reduce…