GitHub topics: ienumerable
farseer-go/collections
Support for List collections and linq syntax
Language: Go - Size: 159 KB - Last synced at: 1 day ago - Pushed at: 1 day ago - Stars: 42 - Forks: 1

soenneker/soenneker.extensions.enumerable
A collection of helpful enumerable extension methods
Language: C# - Size: 632 KB - Last synced at: 5 days ago - Pushed at: 6 days ago - Stars: 1 - Forks: 0

soenneker/soenneker.extensions.enumerable.entities
A collection of helpful IEnumerable Entities extension methods
Language: C# - Size: 118 KB - Last synced at: 7 days ago - Pushed at: 8 days ago - Stars: 0 - Forks: 0

soenneker/soenneker.extensions.enumerable.document
A collection of helpful IEnumerable Document extension methods
Language: C# - Size: 133 KB - Last synced at: 7 days ago - Pushed at: 8 days ago - Stars: 0 - Forks: 0

neon-sunset/RangeExtensions
A set of optimized extensions which integrate System.Range with foreach and LINQ
Language: C# - Size: 114 KB - Last synced at: 7 days ago - Pushed at: over 1 year ago - Stars: 20 - Forks: 0

bzaar/EnumerableToStream
Streams an IEnumerable<string>
Language: C# - Size: 45.9 KB - Last synced at: 30 days ago - Pushed at: about 2 years ago - Stars: 6 - Forks: 0

linkdotnet/tips-and-tricks
A collection of tips and tricks with smaller code snippets and explanation.
Size: 862 KB - Last synced at: about 1 month ago - Pushed at: over 1 year ago - Stars: 129 - Forks: 13

Dirkster99/TreeLib
A .Net Standard Library with Generic methods to traverse k-ary trees in any order required.
Language: C# - Size: 85 KB - Last synced at: 24 days ago - Pushed at: almost 6 years ago - Stars: 29 - Forks: 7

Yoz75/CustomList
simple singly linked list
Language: C# - Size: 6.84 KB - Last synced at: 3 months ago - Pushed at: 4 months ago - Stars: 1 - Forks: 0

banbh/CoEnumerable
A demonstration of how to combine consumers of IEnumerables, aka CoEnumerables
Language: C# - Size: 12.7 KB - Last synced at: 5 months ago - Pushed at: 5 months ago - Stars: 0 - Forks: 0

DamirsCorner/20241213-dotnet-api-ienumerable-errors
Sample project for 'Don't return IEnumerable from action methods' blogpost
Language: C# - Size: 8.79 KB - Last synced at: about 1 month ago - Pushed at: 5 months ago - Stars: 0 - Forks: 0

sharpyr/Veho
iterable toolset
Language: C# - Size: 492 KB - Last synced at: about 1 month ago - Pushed at: 6 months ago - Stars: 0 - Forks: 0

michaelmeling/StreamThreads
Coroutine library for C#
Language: C# - Size: 420 KB - Last synced at: 11 months ago - Pushed at: 11 months ago - Stars: 12 - Forks: 2

parfeniuk/UnitTest_Collection
Simple unit tests examples for Collection objects
Language: C# - Size: 9.77 KB - Last synced at: about 1 year ago - Pushed at: over 7 years ago - Stars: 0 - Forks: 0

SongulSYTRK/Data_Access
İn this Repository, has meaning of ORM , EntityFramework, Lazy-Eager Loading , DbFirst , CodeFirst, Linq To EF, Linq to SQL,
Language: C# - Size: 146 KB - Last synced at: about 1 year ago - Pushed at: over 3 years ago - Stars: 4 - Forks: 0

inputfalken/Sharpy
💫 Generate fake data with fluent syntax.
Language: C# - Size: 4.78 MB - Last synced at: 4 days ago - Pushed at: over 1 year ago - Stars: 7 - Forks: 1

sushantpt/Understanding_Iterators
Code snippets of "Iterators: Effortless sequencing"
Language: C# - Size: 8.79 KB - Last synced at: 3 months ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

tompazourek/Endless
🌌 Extensions that support the C# functional paradigm.
Language: C# - Size: 725 KB - Last synced at: 5 months ago - Pushed at: about 4 years ago - Stars: 65 - Forks: 4

EscanBE/go-ienumerable
C# famous IEnumerable<T> ported to Golang
Language: Go - Size: 464 KB - Last synced at: 7 days ago - Pushed at: about 2 years ago - Stars: 2 - Forks: 0

alfonsohdez08/umbrella
Create .NET DataTable using projections
Language: C# - Size: 196 KB - Last synced at: 20 days ago - Pushed at: almost 3 years ago - Stars: 5 - Forks: 2

sangam10/IEnumerablevsIQueryable
The difference between IEnumerable and IQueryable in c#
Language: C# - Size: 11.5 MB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

DamirsCorner/20221216-linq-deferred-execution
Sample project for 'Beware of LINQ deferred execution' blogpost
Language: C# - Size: 5.86 KB - Last synced at: about 2 months ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

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
Language: C# - Size: 13.7 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

Eatmeta/Smooth
The Practice "IEnumerable"
Language: C# - Size: 8.79 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

Eatmeta/ReadonlyBytes
The Practice "Readonly Bytes"
Language: C# - Size: 4.88 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

wbaldoumas/atrea-extensions
Useful extension methods for .NET.
Language: C# - Size: 82 KB - Last synced at: 30 days ago - Pushed at: 30 days ago - Stars: 2 - Forks: 0

collenirwin/ToPage
Tiny paging library for .NET with support for EF Core and EF6
Language: C# - Size: 71.3 KB - Last synced at: 4 days ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 1

Igor03/list-picker
This package provides an easy way to randomly remove and return elements from an IEnumerable<T> implementation, such as a List<T> object.
Language: C# - Size: 234 KB - Last synced at: about 2 years ago - Pushed at: over 3 years ago - Stars: 1 - Forks: 0

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.
Language: C# - Size: 77.1 KB - Last synced at: almost 2 years ago - Pushed at: over 3 years ago - Stars: 0 - Forks: 0

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.
Language: C# - Size: 682 KB - Last synced at: 7 months ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

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
Language: C# - Size: 2.52 MB - Last synced at: 2 months ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

DVR98/ClassHierarchy
Using Interfaces, Inheritance. How to create Abstract and Sealed classes, Using famous built-in .NET Framework Interfaces (IComparable, IEnumerable)
Language: C# - Size: 91.8 KB - Last synced at: about 2 years ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

rafaelporto/Practices.YieldReturn
Este projeto é o resultado da prática do código apresentado no vídeo da EximiaCo sobre Yield return.
Language: C# - Size: 5.86 KB - Last synced at: about 2 years ago - Pushed at: almost 5 years ago - Stars: 0 - Forks: 0

ghost1face/System.Linq.Dynamic Fork of zzzprojects/System.Linq.Dynamic
This is the Microsoft assembly for the .Net 4.0 Dynamic language functionality.
Language: C# - Size: 236 KB - Last synced at: almost 2 years ago - Pushed at: almost 11 years ago - Stars: 0 - Forks: 0

ptvce/AccountingWinApp
a simple windows project with OOP (Accounting)
Language: C# - Size: 1.91 MB - Last synced at: about 2 years ago - Pushed at: about 5 years ago - Stars: 0 - Forks: 0

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
Language: C# - Size: 292 KB - Last synced at: about 2 months ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

JeyDotC/jeydotc-enumerable
An enumerable class that mimics the concepts of .Net's IEnumerable interface, but with slight adaptations for PHP.
Language: PHP - Size: 27.3 KB - Last synced at: about 2 months ago - Pushed at: about 6 years ago - Stars: 0 - Forks: 0

VanHakobyan/Different-Projects
:fist:Visual Studio 2015, .NET Framework 4.6 , Yield ,IEnumerator, IEnumerable, Interface, Math, Iterator,Pow
Language: C# - Size: 363 KB - Last synced at: about 1 month ago - Pushed at: about 8 years ago - Stars: 3 - Forks: 0
