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 Enumerable
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sourav Kayal (3)
Jaish Mathews (3)
Mariusz Postol (2)
Ajay Kumar (2)
Rikam Palkar (2)
Rahul Sahay (2)
Sachin Kalia (2)
Matthew Cochran (2)
Zoran Horvat (2)
Praveen Raveendran Pillai (1)
Rajiv Singh (1)
Jitendra Mesavaniya (1)
Rasul Huseynov (1)
George (1)
Bytehide (1)
Vivek Tripathi (1)
Alpesh Maniya (1)
Rizwan Ali (1)
Sardar Mudassar Ali Khan (1)
Ahmad Mozaffar (1)
Rahul Singh (1)
Ishika Tiwari (1)
Harpreet Singh (1)
Shreneek Patil (1)
Tuhin Paul (1)
Anu Viswan (1)
Chandrakant Upadhyay (1)
Tural Suleymani (1)
Rahul Bansal (1)
Ilker Kucuk (1)
Vithal Wadje (1)
Pranay Rana (1)
Abhishek Yadav (1)
David Mccarter (1)
Ajay Mor (1)
Thiago Vivas (1)
Rajesh M G (1)
Atul Sharma (1)
Jignesh Kumar (1)
Ritesh Sharma (1)
Amit Kumar (1)
Rahul Kumar Saxena (1)
Sara Silva (1)
Arunava Bhattacharjee (1)
Kalyan Vedantam (1)
Praveen Kumar (1)
Bechir Bejaoui (1)
Jean Paul (1)
Dea Saddler (1)
mahmoud mahmoud (1)
John Charles Olamendy (1)
Kirtan Patel (1)
C# Curator (1)
Sateesh Arveti (1)
Related resources for Enumerable
No resource found
Understanding IEnumerable In C#
11/14/2024 5:49:01 AM.
IEnumerable in C# is an interface that defines a standard way to iterate over a collection of objects. The IEnumerable interface in C# provides a standard, efficient way to iterate over collections us
How Select and SelectMany Works in C#
10/26/2024 5:05:45 AM.
Learn key differences, practical use cases, and examples that demonstrate how these methods simplify data manipulation, making it easier to work with nested and complex data structures in C#.
Programming in Practice - LINQ to SQL - Explained
7/29/2024 6:31:06 AM.
Discover the power of LINQ to SQL in this comprehensive guide. Learn how to seamlessly integrate LINQ queries with SQL databases using the .NET framework. From setting up your environment to executing
Understanding Iterators in C#
7/28/2024 9:09:18 AM.
In this article, we will Understand key concepts, such as iterator methods and custom iteration patterns, and enhance your C# programming skills with practical examples and tips.
Differences Between IEnumerable and IQueryable in C#
7/17/2024 6:55:58 AM.
Explore the nuances between IEnumerable and IQueryable in C#. Understand how these interfaces differ in data retrieval and manipulation, with a focus on performance implications and suitable use cases
Using Find Instead of FirstOrDefault with Collections in C# .NET
7/15/2024 8:10:04 AM.
When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Fin
Understanding LINQ While Writing Your Own
7/3/2024 8:46:22 AM.
LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where
Lazy Loading (1): Difference Between IEnumerable and IQueryable
6/21/2024 6:27:32 AM.
This article will discuss The Lazy loading related topic: Difference between IEnumerable and IQueryable
Pagination in C#: Complete Guide with Easy Code Examples
6/8/2024 12:43:46 PM.
Discover how to implement pagination in C# with this comprehensive guide. Learn to use ASP.NET Core, Entity Framework, and LINQ for efficient data paging. This guide covers server-side and client-side
IQueryable vs IEnumerable
6/6/2024 7:48:45 AM.
IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and opt
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
Difference between IEnumerable vs IQuerable
4/1/2024 6:34:21 AM.
Understand the difference between IEnumerable and IQueryable in .NET collections. While IEnumerable is suitable for in-memory collections, IQueryable allows for optimized queries, especially in scenar
Implement IEnumerable Interface in C#
3/28/2024 10:40:13 AM.
In this tutorial we will learn how to implement IEnumerable interface in C# class. If we implement the IEnumarable interface in our own class then we can loop through all class objects using a foreach
Understanding Collection Types in C#
1/9/2024 4:35:29 AM.
Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnece
Params Keyword With IEnumerable In C# 6.0
11/6/2023 11:31:48 AM.
The params keyword in C# allows you to pass a variable number of arguments of the same type to a method. This feature simplifies method calls when you need to pass a variable number of arguments witho
ASP.NET Core Web API with 3-Tier Architecture and Iterator Pattern
10/19/2023 6:27:35 AM.
The Iterator Pattern is a behavioral design pattern that provides a way to access elements of a collection sequentially without exposing its underlying representation. It defines an interface for acce
Three Popular C# Interfaces
10/12/2023 11:53:45 AM.
In this article, you will learn about the most common interfaces in the C# Libraries that you can use to create robust classes and objects.
IEnumerable and ICollection in C#
9/19/2023 5:12:11 AM.
In this article you will learn about IEnumerable and ICollection in the C# language.
Understanding Projections In LINQ With Select & SelectMany Enumerable Methods
8/23/2023 9:11:12 AM.
In this article I will try to explain how to use projections in LINQ with a collection of objects.
How to Iterate Over JavaScript Object's Properties and Values?
7/20/2023 4:23:15 AM.
In this article, we will learn How to Iterate Over JavaScript Object's Properties and Values
IEnumerable VS IEnumerator in C#
6/16/2023 9:11:32 AM.
This article explains the IEnumerable and IEnumerator interfaces.
Difference between IQueryable, IEnumerable, IList and List
6/13/2023 4:40:52 AM.
when to use what IQueryable, IEnumerable, IList and List
Differences Between IEnumerable And IQueryable And Its Memory Usage
2/28/2023 10:47:15 AM.
IEnumerable and IQueryable are two of the most commonly used interfaces in .NET for dealing with collections of data. While both of these interfaces provide a way to access collections of data, they d
IEnumerable<T> Vs IReadOnlyList<T>
11/28/2022 7:22:02 AM.
Understanding the differences between IEnumerable<T> and IReadOnlyList<T> when returning immutable collection from method
Important Interface in .NET: Work With IEnumerable Interface
11/17/2022 9:41:30 AM.
The purpose of the article is to explain the most important interface, IEnumerable, of the .NET class library and implement it in a pratical example.
Implementing IEnumerator and IEnumerable Interfaces using Inner Class in C#
8/22/2022 8:42:22 AM.
.NET framework provides IEnumerable and IEnumerator interfaces to implement collection like behavior to user defined classes.
.NET Interview Question - IEnumerable Vs IQueryable
8/8/2022 10:37:28 PM.
The differences between IEnumerable and IQueryable.
IEnumerable Vs IQueryable In LINQ
7/1/2022 7:28:34 AM.
In this article, I will demonstrate how to use IEnumerable and IQueryable in C#. Also learn the differences between IEnumerable and IQueryable.
C# Iterations: IEnumerator, IEnumerable and Yield
4/1/2022 10:10:04 AM.
In this article you will learn how to use C# Iterations: IEnumerator, IEnumerable and Yield
IEnumerable in C#
10/29/2021 6:38:31 AM.
In this article, we will learn about the IEnumerable interface in C#. IEnumerable interface is commonly used when dealing with collections and reading a collection's items.
Introduction to New Methods in System.IO.File in .Net 4.0
2/5/2021 5:25:55 AM.
In this article we are looking the improvements made as part of .NET 4.0 which made the file handling more flexible and fast using File class.
Dictionary Requires a Model Item of Type System.Collections.Generic.IEnumerable in MVC 3
2/1/2021 7:35:18 AM.
I encountered an error in the implementation of returning multiple models to a single view.
Collection Interface In .NET
12/2/2020 10:42:50 PM.
In this article you will learn about Collection Interface in .NET. It provides information about interfaces implemented by collection.
IEnumerable And IEnumerator In C#
6/22/2020 5:42:18 AM.
In this article, we discuss why we need these 3 and their purpose & implementation.
Introduction To Building ASP.NET Core And Angular Web Application
3/24/2020 9:56:19 AM.
In this article, you will learn how to build ASP.NET Core and Angular Web Application.
Using The New IAsyncEnumerable Interface In .NET Core 3
10/10/2019 8:32:41 AM.
In this article, you will learn how to use the new IAsyncEnumerable Interface in .NET Core 3.
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#.
IQueryable Vs Queryable X IEnumerable Vs Enumerable Vs IEnumerator X IList Vs List
5/22/2019 9:24:58 AM.
In this article, we will learn the differences and importance of each one - IQueryable, Queryable, IEnumerable, Enumerable, Enumerator, IList, and List.
Iterator Design Pattern
3/5/2019 3:03:08 AM.
This article, explains how to use the Iterator pattern to manipulate any collection of objects. To explain this I am using two interfaces IEnumerator and IEnumerables.
All About IEnumerable and IQueryable
2/12/2019 9:00:34 AM.
When we talk about LINQ, we consider two collections, IEnumerable and IQueryable. In this article, we will learn all about IEnumerable and IQueryable, except how they are evaluated. Possibly, I will c
Difference Between IQueryable, IEnumerable, And IList In LINQ
2/10/2019 11:15:21 PM.
This article explains how to work with IQueryable and IEnumerable and IList in LINQ. Also, it tells when to use IQueryable and IEnumerable in real-time scenarios.
Enumerable, Enumerator, and Yielding a "Free" State Machine
9/5/2018 12:32:31 AM.
In this article, we look at the power of the yield keyword in C#. Enumerable, Enumerator, and Yielding a Free State Machine
Difference Between IEnumerable, ICollection And IList Interface
11/8/2017 5:09:21 AM.
Here I explain the differences among the IEnumerable, ICollection and IList interfaces.
Difference Between IEnumerator And IEnumerable
3/8/2016 9:51:17 AM.
In this article, we are going to find out about the difference between IEnumerator and IEnumerable.
C# IEnumerable Overview
7/15/2015 10:29:16 PM.
This article explains C# IEnumerable.
IEnumerable Vs IQueryable
6/2/2015 2:33:02 PM.
In this article you will learn the difference between IEnumerable and IQueryable.
File Exporter For IEnumerable of T
10/25/2014 2:28:11 PM.
The purpose of this article is to show a solution for a file exporter based in a list of items regardless of type.
Expression<Func<>> vs Func<>
9/2/2014 11:01:21 PM.
In this post you will learn the difference between Expression<Func<>> and Func<> and thier usages.
Expanding the Results View Will Enumerate the IEnumerable Using DB Context
6/17/2014 12:18:45 PM.
This article describes the most frequent terms confronted by software geeks during LINQ execution.
Important Interface in .NET: Work With ICloneable Interface
2/22/2014 12:32:43 PM.
In this article we will learn the concepts of the ICloneable interface in the .NET class library.
Bind List Using LINQ Extension
12/26/2012 3:58:46 PM.
Throughout this article, you will learn how to create a group and sort the records by the group using LINQ.
Enumerators in C#
10/22/2012 7:56:42 AM.
In this article I will explain you about Enumerators in C#.
Render iteration through an object collection possible using foreach keyword
10/20/2012 4:31:52 AM.
This article gives you an answer that, why we get a run time error when we use the foreach loop to iterate through our customized objects container collection.
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.
Coding Better: Using Classes vs. Interfaces
5/15/2012 3:06:00 PM.
Using the .NET framework we basically have two ways to provide abstraction for our code: Classes and Interfaces. This article will look at the use of each and cover some things to consider when choosing between them in different situations.
.Net 4.0 Code Level Enhancements
5/15/2012 1:27:35 PM.
I am publishing here some features which is mainly meant to get a quick start for developers.
Query Through File System Using .Net 4.0 Enumerable Collections
5/15/2012 12:12:53 PM.
This article describes a new method introduced in .NET 4.0 using which developers can interact with file systems very quickly, especially for searching files and folders.
Functions Supporting IEnumerable Interface in F#
5/13/2012 4:54:45 AM.
This article is a demonstration regarding Functions which supports IEnumerable interface and their examples.Take a quick review to learn.
General Formatter for .NET 2/4: Design
8/24/2011 6:56:32 AM.
Part in which solution design is outlined, explaining critical details that the solution will have to implement.
General Formatter for .NET 3/4: Implementation
8/24/2011 6:34:18 AM.
In this section we will explain the implementation of the solution described so far. General formatter is a class implementing IFormatProvider and ICustomFormatter interfaces. This is proposed method to implement formatters in .NET.
How to use IEnumerable in C#
7/9/2010 9:47:08 AM.
How to use IEnumerable in C#.
New features of C# 4.0
5/28/2010 11:29:38 AM.
In this article, I want to talk about the new features being integrated with the new version of C# 4.0 language.
Accessing Array and Collection using LINQ
4/5/2010 2:10:30 AM.
This article will teach you about how you can Access Array elements and Collections using LINQ.
System.Array Class using C#
1/19/2010 12:23:56 AM.
In this article I will explain you about the System.Array Class using C#.
Introduction to Loosely Coupled Collections
2/16/2009 1:10:13 AM.
This article explains about Implementation of Loosely Coupled Collections in C#.