PEPavan Eduincoding-tips.hashnode.dev·Nov 9, 2024 · 3 min readC# Events and Delegates in real-time example #2Let’s take an example of a notification system for a course purchase and completion. To demonstrate the use of delegates and events in an ASP.NET Core application, let's create a simple e-commerce scenario involving course purchases and completions. ...00
PEPavan Eduincoding-tips.hashnode.dev·Nov 9, 2024 · 2 min readC# Events and Delegates in real-time exampleLet’s take an example of a notification system for a course purchase. To effectively use events for notifying course purchases in C#, you can follow a structured approach that leverages the event-driven programming paradigm. This involves defining ev...00
PEPavan Eduincoding-tips.hashnode.dev·Nov 4, 2024 · 4 min readC# Events and Delegates in simple content.Delegates and events are fundamental concepts in C# that facilitate event-driven programming. They allow methods to be passed as parameters and enable a publisher-subscriber model, where one part of the code (the publisher) can notify other parts (th...00
PEPavan Eduincoding-tips.hashnode.dev·Nov 4, 2024 · 4 min readUnderstanding SOLID Principles in C# with ExamplesThe SOLID principles are five fundamental design principles intended to make software designs more understandable, flexible, and maintainable. These principles are particularly relevant in object-oriented programming and can significantly improve the...00