TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Content
People
Search
Any Word
Exact Word
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Vijay Prativadi(6)
Jaimin Shethiya(4)
Tural Suleymani(3)
Gul Md Ershad(3)
TimothyA Vanover(3)
Hamed Niazmand(2)
Shivam Payasi(2)
Rikam Palkar(2)
Banketeshvar Narayan(2)
Atul Rawat(2)
Arunava Bhattacharjee(2)
Jasminder Singh(2)
Mahesh Chand(2)
Matthew Cochran(2)
Pradeep Shet(2)
Ajay Kumar(1)
Jefferson S. Motta(1)
Mamta M(1)
Tuhin Paul(1)
Anandu G Nath(1)
Keyur (1)
Mukesh Nailwal(1)
Tahir Ansari(1)
Lokesh Varman(1)
Sangeetha S(1)
Uttam Kumar(1)
Jay Krishnareddy(1)
Tuba Mansoor(1)
Hemant Jindal(1)
Ammar Shaukat(1)
Rathrola Prem Kumar(1)
Akhil Mittal(1)
Josue Molina(1)
Shakti Saxena(1)
Ritesh Sharma(1)
Abhishek Yadav(1)
Pankaj Lohani(1)
Vidya Vrat Agarwal(1)
Andrew Fenster(1)
Mahesh Alle(1)
Dhanushka Athukorala(1)
Vishal Gilbile(1)
Deepak Middha(1)
Richa Garg(1)
Pathum Fernando(1)
Shivprasad (1)
C# Curator(1)
Santhosh Veeraraman(1)
Amr Monjid(1)
Anand Thakur(1)
Moses Soliman(1)
Arul Chinnappan(1)
Filip Bulovic(1)
Gregory Nickonov(1)
Santosh (1)
Gurpreet Arora(1)
Laks Tutor(1)
Nagaraj M(1)
Abhishek Yadav(1)
Mohamed El-Qassas (Mvp)(1)
Ahmad Anas(1)
Usman Arshad(1)
Vinoth Rajendran(1)
Shashangka Shekhar(1)
Rahul Prajapat(1)
Neeraj Kumar(1)
Nitin (1)
Anupam Jain(1)
Adalat Khan(1)
Praveen Raveendran Pillai(1)
Nilesh Mohite(1)
Abhishek Jaiswal (1)
Pawan Pandey(1)
Varun Bansal(1)
Amit Choudhary(1)
Harshit Vyas(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
How Func Delegates Work in LINQ
Sep 27, 2024.
In this article, we explore how Func delegates operate within LINQ (Language Integrated Query) in C#. Func delegates enable concise and powerful data manipulation by allowing developers to pass methods as parameters.
Predicate Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 22, 2024.
Like Func and Action delegates, the predicate is a delegate. It symbolizes a procedure that verifies that the passed parameter satisfies a set of requirements. One input parameter must be provided by a predicate delegate method, which must then return a boolean (true or false).
Learn Action and Func Delegates in C#
Jun 19, 2024.
Learn about Action and Func delegates in C# to master delegate usage for different scenarios. Action delegates are for methods that return void, while Func delegates handle methods with return values.
Action Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 18, 2024.
One built-in generic type delegate is the action delegate. This delegate makes your program more readable and efficient by eliminating the need for you to define a custom delegate.
Func Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 13, 2024.
Func and Action are two generic delegate types that are built into C#, so you usually don't need to explicitly define custom delegates. A generic delegate called Func is part of the System namespace. It has one out parameter and zero or more input parameters. As an out parameter, the final one is regarded as such.
Action and Func Delegates in C#
May 17, 2024.
Learn about Action and Func Delegates in C# with an app sample. In C#, delegates like `Action` and `Func` enable methods to be treated as objects, promoting flexible, modular, and reusable code through dynamic method invocation and functional programming paradigms.
.NET Delegates in Event-Based Asynchronous Pattern for Seniors
Feb 26, 2024.
This article dives into the practical learning of delegates, emphasizing real-world examples. It explores the Event-Based Asynchronous Pattern (EAP) in C# and its advantages, using delegates to implement asynchronous operations effectively.
.NET Delegates for Mere Mortals: Introduction
Feb 19, 2024.
Explore .NET delegates practically in this article. Learn to use delegates for flexible, reusable code. Follow examples, download source code, and understand delegate syntax, including anonymous methods and lambda expressions.
Understanding Action and Func Delegates in C#
Jan 17, 2024.
Two commonly used delegates in C# are the Action and Func delegates. Let's explore what they are and how to use them. Delegates in C# have some features that distinguish them from normal methods.
Exploring the Power of Action and Func Delegates in C#
Jan 10, 2024.
Delegates play a pivotal role in C# programming, offering the ability to pass methods as parameters, store them as variables, and create custom events and callbacks. Among these, two special types of delegates—Action and Func—stand out for their ability to simplify code, enhancing readability and maintainability.
What is Delegates in C#?
Jan 03, 2024.
Explore the power of delegates in C#, providing type-safe function pointers for indirect method invocation. Learn declaration, initialization, characteristics, and use cases for enhanced code flexibility and extensibility.
Action and Func Delegates in C#
Jan 02, 2024.
Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
Types of Delegates in C#
Oct 25, 2023.
Here in this article, I am going to explain the types of delegates in C# along with the example.
What is Delegates in C# .NET?
Aug 12, 2023.
Delegates in C# act as method pointers, enabling dynamic invocation of methods. They enhance code modularity and flexibility, finding use in event handling, callbacks, and asynchronous programming.
Use Of Delegates In C# Events
Jan 23, 2023.
Here is an example of programs in C# that demonstrates the events with and without delegates.
Events And Delegates In Class Library And Worker Service
Dec 21, 2022.
In this article, you will learn about Events and Delegates in Class Library and Worker Service.
C# Delegates In Practice - Implementing Observer Pattern With Delegates
Oct 31, 2022.
In this article, you will learn about C# Delegates In Practice - Implementing The Observer Pattern with Delegates.
Generic Delegates In C#
May 17, 2022.
Here ill describe that why we need Generic Delegates what are Generic Delegates, keyword used in Generic Delegates and their type with example
Understanding About Delegates In C#
Mar 31, 2022.
In this article, you will learn about delegates in C#.
Action And Func Delegates In C#
Dec 06, 2021.
A brief article about the Action and Func Delegates in C#
Func, Action And Predicate Delegates In C#
Jun 08, 2020.
If you don't want to declare delegates every time, you can use some built-in delegates.
Events And Delegates In C#
Apr 24, 2019.
In this article, you will learn about events and delegates in C#.
How Events And Delegates Are Related
Jun 28, 2018.
This articles describes about what is delegate, what are the different ways to define and declare delegates, when to use delegates, what is event and how events and delegates are associated or related with each other
Use Of Delegates In Programming With Simple Example
Jan 23, 2018.
We all have studied delegates in programming, especially in high-level languages. But most probably, it’s hard to understand if you are new to programming. So I’ll be writing some stuff on the use of delegates with a simple example and I’ll be more focused on the answer of “Why we need delegate” instead of “How to use delegates”.
How And When To Use Delegates In Your Project
Jan 23, 2017.
In this article, you will learn how and when to use delegates in your project.
Explore Delegates In C#
Nov 07, 2016.
In this article, you will explore delegates in C#.
Understanding Delegates In C# - Part 2
Jan 10, 2016.
In this article I will explain about delegates with named method, anonymous method, Lambda Expression, anonymous method with omit parameter list, and delegate inference.
Understanding Delegates In C#
Jan 05, 2016.
In this article you will learn about understanding delegates in C#.
Different Ways To Create Delegates In C#
Oct 31, 2015.
This article is intended to explain the idea and concept to create Delegate with different approach.
Action And Func Delegates In C#
Oct 06, 2015.
In C#, Action, and Func are generic delegates used to handle methods. Action is used for methods that don't return a value, while Func returns a value. Action<int> executes a method with an integer parameter without returning a result. Func<int, int> takes an integer, performs an operation, and returns the result.
Covariance and Contravariance with delegates using C#
Aug 26, 2015.
In this article you will learn about Covariance and Contravariance in C# programming.
Generic Delegates in C#
Dec 31, 2014.
In this article you will learn about Generic Delegates in C#.
From Delegates to Lambdas
Nov 22, 2014.
In this article I am going to discuss the evolution of lambdas from delegates.
Func<> Delegates in LINQ
Sep 10, 2014.
Learn how Func<> Delegates in LINQ work. Func delegates are pointers to methods that take one or more parameters and must return a value.
Action and Func Delegates in C# .NET
Jul 13, 2014.
Func and Action generic delegates were introduced in .NET 3.5. In this article, you will learn how to implement func and action in C#.
Pass Data From User Control to Parent Page, Using Events and Delegates in ASP.Net
Mar 12, 2014.
This article explains how to pass data from a user control to the parent page using events and delegates in ASP.Net.
Generic Delegates in C#
Dec 15, 2013.
In this article, let's try to understand generic delegates in the C# language.
Introduction To Delegates in F#
Oct 14, 2013.
In this article I will explain Delegates and how to them in a F# console application.
Mastering Delegates and Events In C# .NET
Jun 11, 2013.
This tutorial and code example will teach you how to work with delegates in C#.
Using Delegates in C#
May 20, 2013.
In this article you will learn about what Delegates are and how to use them in C#.
Simple Delegates With Examples in C#
Mar 15, 2013.
Here, you will see delegates with examples in C#. Delegates are similar to C++ function pointers, but are type safe. Delegates allow methods to be passed as parameters. Delegates can be used to define callback methods.
Named Delegates in C#
Mar 09, 2013.
This article demonstrates an interesting and very useful concept in C#.
Understanding Delegates Predicates and Lambda
Feb 22, 2013.
To have a clear undestanding of Predicates, you must have a good understanding og delegates.
Using Delegates in ASP.NET
Jan 15, 2013.
Delegates have always been a useful concept introduced in the .Net framework, but because of the difficulty of implementation, first-time developers might find it difficult to implement delegates in .Net programs. Here the main concern is how to read the data from the user control; for reading the data a delegate is used.
Co-variance Delegates in .NET
Oct 24, 2012.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Contra-variance Delegates in .NET
Oct 24, 2012.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Play With Action Delegates in ASP.NET
Oct 06, 2012.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Use of Delegates in C#
Aug 30, 2012.
In this article, I explain delegates and multi-casting through delegates with an example.
Working With Delegates in C#
May 11, 2012.
In this article I explain delegates and how we use them.
Learning The Basics Of Delegates In C#
Dec 05, 2011.
Delegates are a type that reference a Method. When it is assigned by a method it behaves exactly the same as that method. It can be used as parameters and can be returned as a value. So it has same what are the methods have.
Let's Play Around With Main Interrelated Concepts of Delegates in C#
Nov 26, 2011.
Today, in this article we will dig out and play around by creating simple delegate program and let’s see how better we can perform in this single program only. I mean, in this program I will cover everything all stuff required for delegate from all the possible ways. So I will be covering simple delegate creation, multi-cast delegate, use of named methods, use of anonymous methods, use of lambda expression and finally much better implementation about all of these and generic delegates as well.
6 important uses of Delegates and Events
Jun 02, 2010.
In this article we will first try to understand what problem delegate solves, we will then create a simple delegate and try to solve the problem. Next we will try to understand the concept of multicast delegates and how events help to encapsulate delegates. Finally we understand the difference between events and delegates and also understand how to do invoke delegates asynchronously.
Events and Delegates in Remoting
May 02, 2010.
In this article I will explain you about Events and Delegates in Remoting.
Working with Delegates -Part II
Mar 04, 2008.
In this article we will discuss about delegates, what is multicast delegates and its contribution in Asynchronous communications and also how to work with long-running processes etc.
Learn Delegates In C#
Feb 29, 2008.
Delegate in C# is a type that allows methods to be passed as parameters. Learn how to work and implement delegates in your C# app to define callback methods and return parameters.
A Strategy for Using Delegates in C#
Jun 15, 2007.
In a recent article comment I was asked for a sample of how to use a delegate and so I wanted to put together a sample of how we can use delegates in order to implement a strategy pattern in a way that requires much less code that is easier to maintain than when approaching the same solution deriving sub classes using an OOP implementation.
Simple and Multicast Delegates in C#
Jun 05, 2007.
This article describes how to define and use simple/multicast delegates in C#.
Using Delegates to Communication Between Windows Forms
Sep 04, 2006.
Delegates are one of the wonderful features of .Net Framework. Their primary use is focused on support event handling and callback mechanism. In this article we will explore how to use delegate as callback support to make simple communication between deferent opened windows forms
Learning Delegates In C#
Jan 03, 2006.
There is this thing in C# called a delegate, which is going to be crucial to build interactions between our objects. What’s a delegate, you ask? Good question. A delegate is a pointer to a method. What’s that mean? Just like you can pass variable by reference, you can pass a reference to a method. Let me give you an example.
Understanding Delegates in C#
Sep 15, 2005.
Delegate is type which holds the method(s) reference in an object. It is also reffered as a type safe function pointers.
Exploring delegates in C#
Oct 30, 2001.
Delegates are a kind of type safe function pointers which are actually declared as class derived from System.MulticastDelegate.
Using Delegates to Choose Right Function
Apr 01, 2001.
The need to call different class method based on some string passed to class is an old problem.
Implementing Delegates in C# : Part 2
Feb 13, 2001.
This is second part of Timothy's Delegates in C# series...
Implementing Delegates in C#
Feb 04, 2001.
The Zip file contains two projects. One is VB.Net and the other is C#. Each project is an example of the same use of a delegate. A base class is derived and the delegate calls a method on several classes derived from the base class.
Understanding Callbacks with Func and Action Delegates
Sep 26, 2024.
This article explains how to use Func and Action delegates in C# to implement callbacks, providing flexible and reusable code. It includes practical examples for both returning and non-returning methods.
Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 11, 2024.
A delegate is an object that points to a method; alternatively, it may be thought of as a variable of the reference type that stores references to the methods. Function pointer in C/C++, delegates are used in C#. It offers a mechanism to specify which method should be invoked in the case that an event is triggered.
Design Pattern with .NET Delegates
Nov 15, 2023.
Your article is detailed and well-structured, providing a clear explanation of implementing design patterns using generic delegates.
Delegates in C#
Aug 25, 2023.
Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
Understanding C# Delegates
Aug 14, 2023.
Delegates in C# are a powerful feature that allow you to encapsulate a reference to a method inside a delegate object.
Delegates In C#
May 09, 2022.
Here we discuss that what are delegates and why we use delegates and how to use assign delegates.
Delegates - Action vs Func vs Predicate
Sep 02, 2020.
In this article, we will see the usage for 3 types of delegates.
Delegates In C# Explained
Jun 08, 2020.
In this article, we look at delegates and how to multicast them.
Delegates In C#
Feb 12, 2020.
Delegates in C# are a fundamental concept in the language. They are used to create reference types that can encapsulate methods with a specific signature, allowing you to treat methods as objects. Delegates enable the implementation of callback mechanisms, event handling, and dynamic method invocation. Here are some key points about delegates in C#.
Missing 'Manage Delegates' Option In PWA Setting In Project Server 2016
Oct 23, 2017.
In this article, we will be fixing the issue Missing 'Manage Delegates' option in PWA Setting.
Delegates, Anonymous Method, And Lambda Expression In C#
Jan 25, 2017.
Delegates, Anonymous Methods, and Lambda Expressions in C# introduces essential concepts in C# programming related to delegates, anonymous methods, and lambda expressions. These features enable developers to create flexible, reusable, and concise code for handling method references, encapsulating behavior, and enhancing functional programming within C# applications.
Overview Of Delegates
Dec 18, 2015.
In this article you will learn about Delegates and its types.
Delegates Make Confusion (Where to use) In C#
Nov 27, 2015.
In this article you will learn about Delegates and where to use them in C#.
Asynchronous Programming Using Delegates
Nov 04, 2015.
This article is intended to explain the concept of asynchronous programming using DelegateS.
Delegates And Interface Overview
Oct 25, 2015.
This article is intended to describe the relationship, similarities, differences between Delegate and Interface.
Delegates In C#
Oct 01, 2015.
In this article we will try to understand what is delegate and how to use it.
Delegates in C#
Aug 28, 2015.
In this article you will learn about delegates in the C# language.
Delegates in C#
Jun 01, 2015.
This article explains delegates in C# programming with examples.
Delegates in C# Language
Feb 26, 2015.
In this article you will learn about C# Delegates.
Delegates in C#
Feb 16, 2015.
In this article you will learn about Delegates in C#.
Delegates in C# - Part 2
Jan 27, 2015.
In this article you will learn what delegates are and some of the advantages of delegates.
Delegates in C# Language
Dec 31, 2014.
In this article you will learn about Delegates in C# Language.
Delegates in C# - Part 1
Dec 14, 2014.
This article explains what delegates in C# are, how to use them and provides a real-life sample use of them.
Delegates, Anonymous Methods & Lamda Expressions
Sep 29, 2014.
This article explains the basic concept of delegates, anonymous methods and lamda expressions.
Action Delegates
Sep 01, 2014.
This article describes the action delegates.
Delegates in .NET
Jul 27, 2014.
In this article, we will learn Delegates in .NET provide a powerful mechanism for defining and encapsulating methods, enabling flexible event handling and callback functionality.
Delegates in Actual Projects
May 19, 2014.
This article explains how to use delegates in actual projects.
Progress Bar in WPF With Anonymous Delegates
Mar 07, 2014.
Here I created a WPF Progress Bar that will demonstrate many things.
Delegates in C#
Jan 13, 2014.
This article is introducing a new reference type, delegate. A delegate is a C# language element that allows programmers to reference a method for their development work.
Delegates Simplified
Dec 08, 2013.
Delegates encapsulate and pass methods as parameters to other methods. A delegate can encapsulate a named or an anonymous method. You’re most likely to use a delegate in events or callbacks.
Delegates, Anonymous Functions and Lambda Expressions in C#
Jul 28, 2013.
This article provides the basics of C# delegates, c# anonymous function, lambda expressions and delegate with lambda expressions.
Delegates in VB.NET
Nov 10, 2012.
The Zip file contains two projects. One is VB.Net and the other is C#. Each project is an example of the same use of a delegate.
Play With Func Delegates
Oct 06, 2012.
Today, in this article let’s play around with one of the interesting and most useful concepts in C#.
Invoking a Form UI Method From a Different Thread Using Delegates
Apr 14, 2012.
How to invoke a form UI method from a different thread using delegates (inter-thread communication).
Delegates And Async Programming
Jul 21, 2011.
The .Net delegate type is essentially a type-safe, object oriented, function pointer.
Delegates in C#
Nov 01, 2010.
This article discusses what delegates are and how they can be used in C# with lucid code examples.
1
-
100
of
114
<<
1
2
>>
Search
OUR TRAINING