Congratulations - C# Corner Q4, 2022 MVPs Announced
Why Join
Become a member
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
TECHNOLOGIES
ANSWERS
LEARN
NEWS
BLOGS
VIDEOS
INTERVIEW PREP
BOOKS
EVENTS
Training
Live
JOBS
MORE
CAREER
MEMBERS
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 (5)
Sandeep Singh Shekhawat (3)
Devesh Omar (2)
Sachin Kalia (2)
Sateesh Arveti (2)
Ashish Shukla (2)
Deepak Tewatia (1)
Rikam Palkar (1)
C# Curator (1)
Michal Habalcik (1)
Shridhar Sharma (1)
Rafnas T P (1)
Hannan Kamran (1)
Ajay Mor (1)
Faisal Pathan (1)
Surya Prakash Pandey (1)
Felipe Ramos (1)
Sourabh Mishra (1)
Sourav Kayal (1)
Deependra Kushwah (1)
Gnanavel Sekar (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)
Vishwakant Tripathi (1)
Jean Paul (1)
Jaganathan Bantheswaran (1)
Phil Curnow (1)
Matthew Cochran (1)
Vinoth Roy SavaridossBosco (1)
Sukesh Marla (1)
Pragati (1)
Santhosh Kumar Jayaraman (1)
Lajapathy Arun (1)
Rishi Mishra (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
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#.
Extension Methods in C#
6/30/2021 6:10:44 AM.
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.
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.
Extend the C# Types Easily With Extension Methods
12/15/2020 8:17:21 AM.
This article provides an introduction to extension methods and shows how to extend existing types without having to modify them in any way,
Export DataTable To CSV In C#
11/2/2020 10:59:38 PM.
Learn how to export a DataTable to a Comma Separated File (CSV) file using a C# extension method.
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.
Generic Extension Method To Map Objects From One Type To Another
1/28/2019 9:37:45 AM.
In this article, we will learn about Generic Extension method to map objects from one type to another.
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.
Extension Methods in C#
9/5/2018 2:21:34 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
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.
Custom Extension Method In C#
8/23/2017 10:04:37 AM.
Here, I am going to explain how to create and use the extension method.
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.
How to Use Extension Methods in C#
8/9/2013 11:57:58 AM.
This article explains use of Extension Methods in C# to increase the functionality of a type (class).
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#.
Custom Extension Method to Compare List in C#
5/24/2012 10:17:00 PM.
In this article, we will see how to create a custom extension method to compare 2 lists 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 Methods in .NET
2/7/2012 5:21:38 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.
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.