Pavan EduforCode Tipscoding-tips.hashnode.dev·Nov 9, 2024C# 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. ...Discussdelegate
Pavan EduforCode Tipscoding-tips.hashnode.dev·Nov 9, 2024C# 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...Discussdelegate
Pavan EduforCode Tipscoding-tips.hashnode.dev·Nov 4, 2024C# 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...Discussdelegate
abhishek kumaraksilearntocoder.hashnode.dev·Sep 23, 2024Concept of DelegatesWhat is Delegates? First of all in our mind we have a question that there is small "delegate" and there is Capital "Delegate". What it is mean and why there is small and capital in terms of "delegate" and "Delegate". Before resolving above question L...Discussdelegate type
AshforAsh DevOpsashdevops.hashnode.dev·Sep 9, 2024Resolving Harness Delegate Connectivity Issues After VM ResumeI recently installed five Harness delegates on an Ubuntu desktop VM for testing. Initially, all delegates showed as online in the Harness portal. When I suspended the VM for later use and resumed it after some time, the delegates didn't come back on...DiscussHarness
Tural Suleymanidecodebytes.hashnode.dev·Mar 8, 2024Master C# Generics Like a Senior DeveloperLearning Generics is not so hard, but properly applying it is another story. My "Master C# Generics like a Senior Developer" tutorial will help you to apply Generics to real-world projects like a Senior. We'll explore :-Repository pattern with Generi...DiscussC#
Tural Suleymanidecodebytes.hashnode.dev·Mar 8, 2024Advanced C# Delegates like a Senior DeveloperIn this video, I explain delegates from the perspective of a senior developer and show how delegates are used in real practical examples, and how they are compiled internally. The tutorial shows how we use delegates when implementing:-Strategy design...Discuss·155 readsdecodebytes
Sushant Pantsushantpant.com.np·Jan 2, 2024Captured variablesIntroduction variable : a symbolic name associated with a value and whose associated value may be changed - Wikipedia Variables are like placeholders tied to values. They are entities that can be captured, moved around, and tweaked. Taking about ca...Discuss·11 likes·97 readscapturedvariables
Sushant Pantsushantpant.com.np·Dec 26, 2023Delegates in C#Introduction Delegates in C# are like the instructions you give to different pieces of code, telling them what to do and how to work together. Delegates were introduced in C# to provide a flexible and powerful mechanism for implementing callback func...Discuss·12 likes·166 readsC#
Prasoon Abhinawblog.pabhinaw.dev·Aug 17, 2023Mastering C#: Unraveling the Power of C# & OOPSDelegates in C# are powerful tools that enable callback functionality and event handling. They allow you to treat methods as objects, making it possible to pass them as arguments, return them from other methods, and store them in variables. In this a...DiscussC#