ienumerable
There are 36 repositories under ienumerable topic.
linkdotnet/tips-and-tricks
A collection of tips and tricks with smaller code snippets and explanation.
tompazourek/Endless
🌌 Extensions that support the C# functional paradigm.
farseer-go/collections
Support for List collections and linq syntax
Dirkster99/TreeLib
A .Net Standard Library with Generic methods to traverse k-ary trees in any order required.
neon-sunset/RangeExtensions
A set of optimized extensions which integrate System.Range with foreach and LINQ
michaelmeling/StreamThreads
Coroutine library for C#
inputfalken/Sharpy
💫 Generate fake data with fluent syntax.
alfonsohdez08/umbrella
Create .NET DataTable using projections
bzaar/EnumerableToStream
Streams an IEnumerable<string>
SongulSYTRK/Data_Access
İn this Repository, has meaning of ORM , EntityFramework, Lazy-Eager Loading , DbFirst , CodeFirst, Linq To EF, Linq to SQL,
VanHakobyan/Different-Projects
:fist:Visual Studio 2015, .NET Framework 4.6 , Yield ,IEnumerator, IEnumerable, Interface, Math, Iterator,Pow
asieradzk/IEnumerableUnpacker
Unzip your IEnumerables with IEnumerable Unpacker. A small library for optimal collection unzipping in C#
EscanBE/go-ienumerable
C# famous IEnumerable<T> ported to Golang
soenneker/soenneker.extensions.enumerable
A collection of helpful enumerable extension methods
wbaldoumas/atrea-extensions
Useful extension methods for .NET.
collenirwin/ToPage
Tiny paging library for .NET with support for EF Core and EF6
banbh/CoEnumerable
A demonstration of how to combine consumers of IEnumerables, aka CoEnumerables
CSharp-Pills-15mg/Queryable-vs-Enumerable
A C# Pill that highlights that the Linq query applied after a cast to `IEnumerable` is not translated into SQL. Instead, it is run in memory.
DVR98/ClassHierarchy
Using Interfaces, Inheritance. How to create Abstract and Sealed classes, Using famous built-in .NET Framework Interfaces (IComparable, IEnumerable)
JeyDotC/jeydotc-enumerable
An enumerable class that mimics the concepts of .Net's IEnumerable interface, but with slight adaptations for PHP.
ptvce/AccountingWinApp
a simple windows project with OOP (Accounting)
sangam10/IEnumerablevsIQueryable
The difference between IEnumerable and IQueryable in c#
sharpyr/Veho
iterable toolset
sushantpt/Understanding_Iterators
Code snippets of "Iterators: Effortless sequencing"
alexander-harmaty/LinkedList-Implements-IEnumerable-Example
FSC-BCS-426: C# Programming Lab 4
DamirsCorner/20221216-linq-deferred-execution
Sample project for 'Beware of LINQ deferred execution' blogpost
Eatmeta/ReadonlyBytes
The Practice "Readonly Bytes"
Eatmeta/Smooth
The Practice "IEnumerable"
FabioIngenito/CSharp_IEnumeratorIEnumerable
IEnumerator e IEnumerable Em muitas classes e/ou componentes percebemos normalmente que há uma implementação de alguma interface, para entender melhor sobre os motivos que cada interface é implementada, iniciei um estudo a fim de desvendar ou até mesmo abrir nossas mentes quanto ao que se pode fazer. Neste momento falaremos sobre duas interfaces que considero duas dentre as interfaces mais utilizadas pelos programadores na linguagem: a interface IEnumerator e a interface IEnumerable; No namespace System.Collections temos a interface IEnumerator, esta interface é responsável por nos possibilitar trabalhar com elementos enumeráveis, implementa em sua estrutura o atributo Current que indica o elemento que se está acessando, e métodos como: bool MoveNext() e void Reset(), estes por sua vez é responsável por encontrar o próximo objeto e ir para o primeiro objeto respectivamente; No namespace System.Collections temos a interface IEnumerable, esta interface é responsável por informar que qualquer “coisa” que a implementar pode ser enumerável, muitos componentes utiliza essa interface, sua estrutura implementa um método da interface IEnumerator citada anteriormente, este método chama-se GetEnumerator(), agora que já entendemos sobre o que nos permite cada uma das Interfaces, podemos prosseguir. Para exemplificar o pensamento e a importância destas interfaces vamos falar sobre alguns comandos e/ou componentes presentes em nosso dia-dia; O uso do foreach, por exemplo, é comumente usado para percorrer Arrays e Collections, mas pode ser usado na estrutura do que se quer percorrer somente se existir implementado a interface IEnumerable; Um Array, já implementa a interface IEnumerable; Para uma Coleção podemos usar qualquer classe (class) estrutura (struct) ou Interface que implementa a interface IEnumerable; Uma IList ou List também implementam a interface IEnumerable; Já que agora sabemos de tudo isso, vamos a um exemplo usando a Interface IEnumerable, aplicando com classes, Imaginamos a seguinte situação, temos a classe Pai e a classe Filho, em nosso exemplo a classe Pai terá 3 Filhos de nomes “Reinaldo”, “Ricardo” e “Roberto” ambos com idades de respectivamente: “30”, “28” e “25” anos; A classe Pai deve implementar a interface IEnumerable e o método GetEnumerator(); para que seja possível visualizar os seus objetos Filhos. Mãos a Obra!!! Referências Livro: Profissional C# e a Plataforma .NET 3.5 Curso Completo PDF: C# School – 14 lessons to get you started with C# e .NET
ghost1face/System.Linq.Dynamic
This is the Microsoft assembly for the .Net 4.0 Dynamic language functionality.
JefersonMelo/16-Loggi
Teste Técnico Loggi. Este Repositório foi criado para entrega do projeto de Geração de Relatório tendo como entrada um código de barras. cada ternário é responsável por uma checagem de um determinado pacote a ser enviado.
kathleenwest/AdvancedConsoleApplicationII
This is a very simple windows console application that I completed for a class assignment. It is shown here to illustrate my coding style, structure, and commenting. This example is considered Level 3 – Advanced. Objectives: Generics IDisposible Pattern Utilities Dynamic Array IEnumerable<T> Interface Swap
MehrajLatifli/OnStore---Online-Store-_WPF-App
Example of edit item by Binding in Code, add item and remove item in Listbox with ListGeneric, search items by IEnumerable Generic
parfeniuk/UnitTest_Collection
Simple unit tests examples for Collection objects
rafaelporto/Practices.YieldReturn
Este projeto é o resultado da prática do código apresentado no vídeo da EximiaCo sobre Yield return.
SatSargsyan/IEnumerable
It's a program, which is calculating Fibonacci numbers, using yield return(.net framework 4.6,C# 6.0).