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
About anonymous method
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Matthew Cochran (2)
Sekhar Srinivas (2)
K S Ganesh (2)
Josue Molina (1)
Sanjay Kumar (1)
Ajay Kumar (1)
Jaimin Shethiya (1)
Tural Suleymani (1)
Keyur (1)
Anand Kumar Rao (1)
Ahmad Anas (1)
Dipal Choksi (1)
Kalyan Bandarupalli (1)
Amr Monjid (1)
Rikam Palkar (1)
Abhishek Yadav (1)
Rafnas T P (1)
Pradeep Yadav (1)
Jasminder Singh (1)
Adalat Khan (1)
Mohit Sharma (1)
Abhishek Kumar (1)
Sourav Kayal (1)
Ramesh Maruthi (1)
Amit Choudhary (1)
Eranda Horanagama (1)
John Charles Olamendy (1)
Vineet Kumar Saini (1)
Kalyan TKumar (1)
Jigar Desai (1)
Related resources for anonymous method
No resource found
Action And Func Delegates In C#
9/12/2024 6:18:26 AM.
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
Detailed use of Action Delegate in C#
9/11/2024 6:46:49 AM.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It sup
Learn Action and Func Delegates in C#
6/19/2024 11:51:33 AM.
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.
Delegates in .NET Core C#: Syntax, Usage and Examples
6/11/2024 9:17:47 AM.
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
.NET Delegates for Mere Mortals: Introduction
2/19/2024 7:27:20 AM.
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 metho
Action and Func Delegates in C#
1/2/2024 5:18:03 AM.
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. H
Language Extensions In C# 2.0
9/13/2023 4:14:47 AM.
This article intends to the C# 1.x developers and covers what-why-how the new enhancement .The philosophy behind the document is to have quick update on C# 2.0 and leverage this in your day to day dev
Delegates, Anonymous Method, And Lambda Expression In C#
8/24/2023 10:58:50 AM.
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 develo
Anonymous Methods in C# 2.0
8/20/2023 2:37:07 PM.
In this article, we will explore the anonymous method feature introduced in C# 2.0.
Lambda Expressions in C#
11/30/2022 9:33:02 AM.
In this artivle I will explain where to use the Anonymous methods first then we see the example on lambda expressions.
Anonymous methods in C#
8/25/2022 6:16:29 AM.
This article discusses the anonymous methods as a new feature in .NET 2.0, it will show you how to associate a delegate directly to a block of code statements at the time of event registration.
C# Anonymous Methods & The Action Object
4/6/2022 11:14:21 AM.
Two interesting additions to the 2.0 C# language are the Action<> object, and anonymous methods. The Action<> object lets you specify an action to be performed on an object and the anonymo
Anonymous Method In C#
6/18/2020 5:53:53 AM.
With this method, there is meaning in the name itself. It is a method with no name.
Advanced Features In C#
2/13/2020 7:56:00 AM.
In this article, you will learn about advanced features in C#.
Anonymous Methods And Lambda Expressions In C#
2/21/2019 3:10:04 AM.
In this article, you will learn about anonymous methods and lambda expressions in C#.NET. Anonymous method is a block of code, which is used as a parameter for the delegate.
Anonymous Methods In C#
2/21/2019 3:05:06 AM.
An c# anonymous method is method which is inline method and it does not have name i.e it has only body. Anonymous methods takes lesser time than a named method. For better performance, then you should
Func Delegate in C# with Examples
4/25/2015 1:05:19 AM.
This video provides a complete explanation about the Generic Func Delegate and also explains about how to use Func Delegate with Named Method , Using Func Delegate with Anonymous Methods and using Func Delegate with Lambda Expressions with example. Hope this video will help out in using the Func Delegate Properly.
Anonymous Method and Lambda Expression in C#
4/17/2015 1:49:22 AM.
This Video Provides a Complete Introduction about how to convert the Named Method Programming model to Anonymous Method and then Converting the Anonymous Method Programming Model to Lambda Expression in C# so that the every one can understand the migrations between the Named Method Programming to Lambda Expression
Delegates, Anonymous Methods & Lamda Expressions
9/30/2014 6:30:12 PM.
This article explains the basic concept of delegates, anonymous methods and lamda expressions.
The Anonymous Methods and Lambda Expressions in .NET
7/31/2014 12:24:54 PM.
The purpose of this article is to provide the basic idea of Anonymous methods and Lambda expressions in C#.
A Journey to Lambda Expression: Part 2
7/29/2014 6:11:02 PM.
This article relates a journey to Lambda.
Anonymous Methods and Lambda Features in C#
5/21/2014 7:43:22 PM.
I have tried to explain the concept of Anonymous methods and Lambda expression features in a very simple manner.
Anonymous Methods in C#
4/24/2014 3:49:27 PM.
In this article we will learn how to implement anonymous functions in C#.
Some Important Keywords in C#
9/4/2013 1:09:36 PM.
In this article we will go through some important uses of C# keywords.
Foreach Behavior With Anonymous Methods and Captured Value
1/30/2013 5:18:52 PM.
Recently I’ve been researching about the behavior of foreach loop for C# in 5.0 and earlier versions. Here’s a snippet that I was trying and getting different output in different versions of C#.
Using Lambda expression
10/20/2012 1:54:44 AM.
This article gives you brief description about lambda expression and how to use it
New features in C# 2.0
10/13/2012 5:19:59 AM.
In this article, I will learn about and use the new features in C# 2.0 added by the Microsoft designers, such as generics, anonymous methods, partial types, static classes, nullable types, and limiting access to properties.
Introduction to Functional Programming in C#
9/29/2012 8:43:02 AM.
With the release of the 3.5 framework, we have a completely different coding style available (functional programming). We could actually do functional programming in the 2.0 framework, but the resulting code was ugly and hard to understand at a glance and thus hard to maintain. Now, with lambda method syntax and extension methods, we can produce very human-readable code written in a functional style.
Anonymous Method in C#
1/9/2012 5:05:46 PM.
In this article you will see how to implement Anonymous Methods in C#.
New Features in C# version 2.0 - Partial Types
8/31/2006 1:57:33 AM.
Partial types are new addition to C# language version 2.0, which is available with the .NET Framework 2.0 or Visual Studio 2005. This article discusses the partial classes and how to create and use them in your applications.
New Features in C# 2.0 : Part 1
12/19/2005 5:11:40 AM.
In a two part series I will explain new features introduces in C# language version 2.0. In this article I will talk about generics.
New Features in C# 2.0 : Part 2
12/19/2005 4:58:59 AM.
In this article I will talk about iterators, anonymous methods, and partial classes.
Anonymous Method to Retrieve Data Reader Passed from DAL
12/13/2005 5:46:11 PM.
Anonymous method is a new feature in C# 2.0 that allows you to define an anonymous method called by a delegate.