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 Extension methods
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jignesh Kumar (5)
Sateesh Arveti (2)
Ashish Shukla (2)
Diptiranjan Sutar (1)
Michal Habalcik (1)
Jaimin Shethiya (1)
Jitendra Mesavaniya (1)
Ajay Kumar (1)
Rishi Mishra (1)
Tahir Ansari (1)
Gnanavel Sekar (1)
Amit Mohanty (1)
C# Curator (1)
Rikam Palkar (1)
Rafnas T P (1)
Hannan Kamran (1)
Ajay Mor (1)
Felipe Ramos (1)
Deependra Kushwah (1)
Rion Williams (1)
satish suthar (1)
Nitin Pandit (1)
Rajeev Ranjan (1)
Sachin Kalia (1)
Marcus Santodonato (1)
Surender Kumar (1)
Akkiraju Ivaturi (1)
Mahesh Chand (1)
Ramesh Maruthi (1)
Phil Curnow (1)
Matthew Cochran (1)
Vinoth Roy SavaridossBosco (1)
Sukesh Marla (1)
Lajapathy Arun (1)
Vipul Kelkar (1)
Reeta Singh Lodhi (1)
Mukesh Kumar (1)
Biswa Pujarini Mohapatra (1)
Srihari Chinna (1)
Moustafa Arafa (1)
Related resources for Extension methods
No resource found
Null-Conditional Operators in C# - Simplifying Null Checks & More
5/27/2024 11:46:08 AM.
Explore the null-conditional operators in C# 6.0, which simplify null checks and prevent NullReferenceExceptions. Learn about the ?. operator, null-conditional indexing, and combining these with null-
Extend the C# Types Easily With Extension Methods
4/26/2024 10:45:21 AM.
Easily extend C# types using extension methods for enhanced functionality without modifying the original type. Improve code readability and reusability by adding custom methods to existing types, fost
Learn about Extensions in C#
4/22/2024 8:30:46 AM.
Learn about extending class functionality in C# using extension methods without altering source code. Understand inheritance vs. extensions, handling sealed classes, method chaining, and key points li
What is Extension Methods in C#?
3/26/2024 9:15:42 AM.
This article delves into the concept of extension methods in C#, exploring their syntax, benefits, and best practices through practical examples. It offers a means to extend existing types without alt
Exploring .NET 6's MinBy() and MaxBy() Extension Methods
3/22/2024 10:39:05 AM.
In this article, I will demonstrate the exciting new additions to LINQ extension methods introduced in.NET 6: MinBy() and MaxBy(). Let's explore how these powerful methods simplify code, providing
Learn about Sealed Classes in C#
2/14/2024 6:09:40 AM.
In C# programming, sealed classes offer control over inheritance but can be restrictive. This article delves into unlocking their potential using extension methods and the decorator pattern. These tec
Extension Methods In .NET
10/9/2023 5:30:56 AM.
To put it in a simple manner, Extension Methods have been introduced in the .NET 3.5 framework to add methods to a class without altering the code of that class.
A Deep Dive into Static Classes in C#
9/25/2023 4:26:42 AM.
This article, "Exploring Static Classes in C#," provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the
Custom Extension Method In C#
9/15/2023 5:05:51 AM.
In C#, extension methods are a powerful feature that allows you to add new methods to existing classes without modifying their source code. A custom extension method in C# is a user-defined method tha
Simplify Your Code with C# 12 Extension Methods
4/26/2023 4:46:27 AM.
C# 12's New Extension Method Features: Simplifying Your Code and Making It More Modular
Extension Method in C#. Everything You Need To Learn
2/10/2023 8:54:40 PM.
This article explains Extension Methods in C#. Extension methods enable you to add methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type.
Creating An Extension Method To Get Enum Description
3/30/2022 12:55:39 PM.
This article will take you down the rabbit hole to understand the extension methods in C#.
Learn About Extension Methods In C#
12/26/2019 10:48:40 AM.
In this article I am explaining about how we can extend the existing methods.
Learn About Extension Methods In TypeScript
10/15/2019 3:11:58 AM.
Extension-method gives you the power to add new methods to existing types. You don’t have to create a new derived-type. You can write extension-method of any data-type you want. It’s just like writing
Practical Use Of Extension Methods In C#
8/29/2019 3:48:31 AM.
In this video, we will talk about and learn the practical usage of extension methods in C#.
Extension Methods for Daily Use
9/11/2018 4:16:56 AM.
Extension Methods allows the programmer to extend the functionality of a type without having to derive from the type.
LINQ Extension Methods - Partitioning Operator - Part Four
8/16/2018 11:16:54 PM.
This article is continuation of Linq extension methods. In this article I am going to demostrate partitionaning operators like skip, skipWhile, take and TakeWhile.
LINQ Extension Methods - Element Operator And Set Operator - Part Three
8/14/2018 9:23:40 AM.
In this article, we are going to explore another two operators like element operator and set operators. Element operators are used to returning the particular element from the collection and set opera
LINQ Extension Methods Quantifier And Aggregation Operator - Part Two
8/8/2018 1:38:14 PM.
This article is continuation of Linq extension methods. If you want to read first part please click here Part One. In this article I will demonstrate quantifier operator and aggregation operators.
LINQ Extension Methods - Part One
8/5/2018 11:18:50 AM.
This article explains linq extension methods like filtering, grouping and sorting and projection orators
Extension Methods In C#
3/26/2018 1:09:24 AM.
Extension methods enable you to add methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type.
Handling Casing Issues Though Extension Methods In C# And Visual Basic
11/6/2015 10:59:40 AM.
In this article you will learn how to handle casing issues though Extension Methods in C# and Visual Basic.
Extension Methods in C#
4/14/2015 6:49:46 PM.
This article explains extension methods of C#.
Extension Methods in C#
1/19/2015 7:01:53 AM.
In this video you will see how to work with Extension Methods in C#.
New C# Features That Support LINQ
1/9/2015 4:47:13 PM.
In this article we will learn some basic concepts of LINQ and apart from that we can see the C# features that support LINQ.
Facts About Extension Methods in C# With Practices
9/18/2014 4:54:15 PM.
In this article you will learn Extension Methods in C# with Practices.
Secrets of Extension Methods: Part II
9/5/2014 12:49:13 AM.
This article explains how Extension Methods are used in LINQ.
Secrets of Extension Methods: Part I
9/5/2014 12:48:09 AM.
This article gives an introduction to Extension Methods.
Extending the Behavior of an Interface Using Contravariance, Generic Typing and Extension Methods
8/5/2014 1:43:32 PM.
In this article, I demonstrate how to take this approach a step further by using contravariance and generic typing to extend a public interface.
Extension Methods in C# 3.0
7/2/2014 4:31:10 PM.
This article explains Extension methods, a new existing feature of C# 3.0.
C# Extension Methods: Explained
2/3/2014 7:35:45 AM.
The intention of the article is to give an idea of what extension methods are and their benefits.
Extension Methods in C# Simplified
12/23/2013 1:04:31 AM.
In this article, you will learn the basics of extension methods in C# and why and how to use them.
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.
Extension methods under .NET Framework v2 and v3
9/29/2012 8:56:30 AM.
This artilce tells you how to implement extension methods when using the .NET Framework v2 or v3 within Visual Studio 2008.
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.
Preview of What's New in C# 3.0
9/29/2012 8:17:51 AM.
This article discusses about the new enhancements expected in C# 3.0.
Creating Extension Methods in ASP.NET
9/26/2012 11:35:32 PM.
In this article we will create some extension methods for an ASP.Net application.
Practical Usage of Complete Extension Methods in LINQ
4/19/2012 5:53:00 AM.
In this article we are going to see the complete usage of extension methods in LINQ with the help of a Lambda expression.
Extension Methods in C#
10/18/2011 12:12:19 AM.
.NET framework comes with a set of inbuilt classes and types which we use extensively in our applications. Integer, string, float etc are some of these which are very frequently used.
Extension Methods in .NET
7/21/2011 3:18:03 PM.
In this article we will see what extension methods are, why we need them and how to create them.
Extension Methods in C#
2/11/2011 6:23:02 AM.
Extension methods make it possible to write a method to a class that doesn't offer the method at first. You can also add a method to any class that implements a specific interface, so multiple class can make use of the same implementation.
What are Extension Methods and how to implement them
12/14/2010 6:08:48 PM.
In this article you will learn what are Extension Methods and how to implement Extension Methods.
C# Language Enhancements
10/26/2010 2:51:39 PM.
This article talks about some C# language enhancements.
C# Extension Methods
9/6/2010 4:39:49 AM.
In this article you will learn how to use Extension Methods in C#.
Introduction to LINQ, Extension methods and Lambda Expressions
10/19/2009 1:33:03 AM.
This article is an introduction of LINQ, Extension methods and Lambda Expressions. In my following articles, I will delve into more details.
Extension Methods in C#
3/19/2009 12:52:06 AM.
In this article I would like to introduce one of new C# 3.0 enhancements “Extension Methods” and so on.