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 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]
Jignesh Kumar (7)
Sandeep Singh Shekhawat (3)
Sachin Kalia (2)
Sateesh Arveti (2)
Ashish Shukla (2)
Diptiranjan Sutar (1)
Mariusz Postol (1)
Michal Habalcik (1)
Jaimin Shethiya (1)
Jitendra Mesavaniya (1)
Ajay Kumar (1)
George (1)
Sourabh Mishra (1)
Rishi Mishra (1)
Tahir Ansari (1)
Vishwakant Tripathi (1)
Gnanavel Sekar (1)
Faisal Pathan (1)
Santhosh Kumar Jayaraman (1)
Amit Mohanty (1)
C# Curator (1)
Deepak Tewatia (1)
Rikam Palkar (1)
Shridhar Sharma (1)
Rafnas T P (1)
Hannan Kamran (1)
Ajay Mor (1)
Devesh Omar (1)
Surya Prakash Pandey (1)
Felipe Ramos (1)
Sourav Kayal (1)
Deependra Kushwah (1)
Bryian Tan (1)
Saillesh Pawar (1)
Mukesh Kumar (1)
Rion Williams (1)
Ehsan Sajjad (1)
Bruno Leonardo Michels (1)
satish suthar (1)
Harpreet Singh (1)
Nitin Pandit (1)
Rajeev Ranjan (1)
Rahul Singh (1)
Marcus Santodonato (1)
Surender Kumar (1)
Akkiraju Ivaturi (1)
Mahesh Chand (1)
Gautam Mokal (1)
Ramesh Maruthi (1)
Jean Paul (1)
Jaganathan Bantheswaran (1)
Phil Curnow (1)
Matthew Cochran (1)
Vinoth Roy SavaridossBosco (1)
Sukesh Marla (1)
Pragati (1)
Lajapathy Arun (1)
Manish Singh (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 Method
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-
Programming in Practice - LINQ Expression
5/6/2024 9:05:50 AM.
An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available so
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
Extending List Functionality with C# Extension Methods
1/22/2024 8:21:54 AM.
In this article, I will demonstrate How to create an extension method in c# for List type. I will explain how we can extend the functionality of List without a new derived class. I will create extensi
Extension Method in C#
12/27/2023 9:01:42 AM.
Extension Methods in .NET, a powerful feature introduced in .NET Framework 3.0. Learn how to seamlessly add or extend methods to existing types, enriching your coding experience. ??
Extension Methods In C#
10/23/2023 7:27:51 AM.
This article explains Extension methods. Extension methods are static methods, that are always implemented in a static class. In C# we already have some built-in extension methods like Union, Where an
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
How To Use Extension Methods In C#
9/21/2023 4:17:56 AM.
This article explains use of Extension Methods in C# to increase the functionality of a type (class).
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
Generic Extension Method To Map Objects From One Type To Another
9/10/2023 9:35:13 PM.
In this article, we will learn about Generic Extension method to map objects from one type to another.
Custom Extension Method to Compare List in C#
9/8/2023 4:05:25 AM.
In this article, we will see how to create a custom extension method to compare 2 lists in C#.
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.
How To Check If An Array Is Empty In C#
2/2/2023 10:46:46 AM.
In this article, we will explore various methods to determine if an array is empty in C#. The Length property, Count() extension method of LINQ or the IsNullOrEmpty() method can be used to check if th
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#.
Create HTML Helpers Extension Method to Get Id and Name in jQuery Function
3/2/2021 9:12:47 AM.
This article introduces two extension methods of the HtmlHelper class, one that obtains the Id in a jQuery function and another obtains the Name in a jQuery function.
Real-Time Example Of Extension Method In C#
3/27/2020 8:45:22 AM.
This article demonstrate how to create extension method for long type and it can be used across all your classes within your project.
Creating Custom HTML Helpers
1/14/2020 4:44:12 PM.
In this article we learn various ways to create custom HTML Helpers.
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#.
Create And Use An Extension Method In C#
8/20/2019 7:58:12 PM.
In this article, learn how to create a extension method in C# and why we need extension methods.
Extension Method In C#
10/24/2018 6:02:45 AM.
Extension Methods are a new feature in C# 3.0. An Extension Method enables us to add methods to existing types without creating a new derived type, recompiling, or modify the original types.
Extension Method In C#
9/19/2018 1:01:01 AM.
Extension Method In C#. Extension method is a special kind of static method which we can access throughout or outside of a program. Extension method helps us to extend the class with new methods witho
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
Understand Extension Method in C#
8/13/2018 11:48:33 PM.
This article explains extension methods of C#. The extension method is a modified version/slightly changed version of a static method.
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.
Coding Challenge - Lesson Learned
2/22/2017 12:20:49 PM.
Here, I am sharing some note from the coding challenge: NumberStyles, Tuple, Generic Extension Method, Group string from right to left.
Learn a Tiny Bit of C# in Seven Days - Day Five
5/12/2016 11:58:23 AM.
In this article we will cover important topics of C# and try to unleash them practically.
How To Use Extension Method In C#
11/26/2015 12:32:12 PM.
In this article you will learn how to use Extension Method in C#.
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.
Extend Sealed Class in C# Using Extension Method - A Simple Approach
8/11/2015 3:55:49 PM.
In this article you will learn how to extend a sealed class in C# using an extension method.
Extension Methods in C#
7/13/2015 11:34:03 AM.
In this article you will learn Extension Methods feature in C# with simple example.
Frequently Used String Extension Methods in C#
6/2/2015 4:33:41 PM.
This article has a small collection of string extension methods for use in daily development.
What Are Extension Methods and How to Use Them
5/28/2015 6:46:45 AM.
This article describes extension methods and explains how and when to use them.
Extension Methods in C#
4/14/2015 6:49:46 PM.
This article explains extension methods of C#.
Extension Method in C#
2/17/2015 11:37:14 PM.
In this article, we will learn what extension methods are and how to create and implement your own extension method.
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.
Extension Methods in C#
12/27/2014 8:11:26 AM.
In this article you will learn about Extension Methods in C#.
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.
Extension Methods in C#
12/14/2013 3:37:44 PM.
In this article, I will try to explain what an Extension Method is and in which scenario it is used.
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.
ToLookup Extension Method explained
10/13/2012 5:26:58 AM.
The ToLookup() method can be used to quickly create lookup items based on different conditions.
PIN Extension Method Using C#
10/13/2012 5:07:05 AM.
An extension method is a special kind of static method that allows you to add new methods to existing types without creating derived types. PIN stands for the three extension methods PreviousItem, IndexOfCurrentItem and NextItem.
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.
Overview of Extension Methods in C#
9/22/2012 1:04:33 AM.
This article is an overview of Extension Methods in C#.
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 Method in C#
11/20/2011 12:25:07 AM.
In this article we will define the Extension Method and perform the sum arithmetic operation in C#.
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.