Ecosyste.ms: Repos

An open API service providing repository metadata for many open source software ecosystems.

GitHub topics: ienumerable

soenneker/soenneker.extensions.enumerable

A collection of helpful enumerable extension methods

Language: C# - Size: 133 KB - Last synced: 12 days ago - Pushed: 12 days ago - Stars: 1 - Forks: 0

EscanBE/go-ienumerable

C# famous IEnumerable<T> ported to Golang

Language: Go - Size: 464 KB - Last synced: 17 days ago - Pushed: about 1 year ago - Stars: 2 - 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: about 1 month ago - Pushed: about 3 years ago - Stars: 0 - Forks: 0

parfeniuk/UnitTest_Collection

Simple unit tests examples for Collection objects

Language: C# - Size: 9.77 KB - Last synced: about 2 months ago - Pushed: over 6 years ago - Stars: 0 - Forks: 0

linkdotnet/tips-and-tricks

A collection of tips and tricks with smaller code snippets and explanation.

Size: 862 KB - Last synced: about 1 month ago - Pushed: 9 months ago - Stars: 97 - Forks: 12

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: 3 months ago - Pushed: about 7 years ago - Stars: 3 - Forks: 0

bzaar/EnumerableToStream

Streams an IEnumerable<string>

Language: C# - Size: 45.9 KB - Last synced: 6 days ago - Pushed: about 1 year ago - Stars: 5 - 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: 4 months ago - Pushed: over 2 years ago - Stars: 4 - Forks: 0

farseer-go/collections

Support for List collections and linq syntax

Language: Go - Size: 118 KB - Last synced: about 1 month ago - Pushed: about 2 months ago - Stars: 41 - Forks: 1

inputfalken/Sharpy

💫 Generate fake data with fluent syntax.

Language: C# - Size: 4.78 MB - Last synced: 1 day ago - Pushed: 5 months ago - Stars: 7 - Forks: 1

neon-sunset/RangeExtensions

A set of optimized extensions which integrate System.Range with foreach and LINQ

Language: C# - Size: 114 KB - Last synced: 6 days ago - Pushed: 5 months ago - Stars: 15 - Forks: 0

michaelmeling/StreamThreads

Coroutine library for C#

Language: C# - Size: 418 KB - Last synced: 8 months ago - Pushed: 8 months ago - Stars: 9 - Forks: 0

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: about 1 month ago - Pushed: almost 5 years ago - Stars: 25 - Forks: 6

sharpyr/Veho

iterable toolset

Language: C# - Size: 479 KB - Last synced: 10 months ago - Pushed: over 2 years ago - Stars: 0 - Forks: 0

tompazourek/Endless

🌌 Extensions that support the C# functional paradigm.

Language: C# - Size: 725 KB - Last synced: 10 months ago - Pushed: about 3 years ago - Stars: 65 - Forks: 4

alfonsohdez08/umbrella

Create .NET DataTable using projections

Language: C# - Size: 196 KB - Last synced: 5 days ago - Pushed: almost 2 years ago - Stars: 5 - Forks: 1

sangam10/IEnumerablevsIQueryable

The difference between IEnumerable and IQueryable in c#

Language: C# - Size: 11.5 MB - Last synced: about 1 year ago - Pushed: over 1 year 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: about 1 year ago - Pushed: over 1 year 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: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

Eatmeta/Smooth

The Practice "IEnumerable"

Language: C# - Size: 8.79 KB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

Eatmeta/ReadonlyBytes

The Practice "Readonly Bytes"

Language: C# - Size: 4.88 KB - Last synced: about 1 year ago - Pushed: over 1 year ago - Stars: 0 - Forks: 0

wbaldoumas/atrea-extensions

Useful extension methods for .NET.

Language: C# - Size: 81.1 KB - Last synced: 12 days ago - Pushed: 12 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: 4 days ago - Pushed: over 3 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: about 1 year ago - Pushed: over 2 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: 10 months ago - Pushed: over 2 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: about 1 year ago - Pushed: over 3 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: about 1 year ago - Pushed: almost 4 years ago - Stars: 0 - Forks: 0

banbh/CoEnumerable

A demonstration of how to combine consumers of IEnumerables, aka CoEnumerables

Language: C# - Size: 12.7 KB - Last synced: over 1 year ago - Pushed: about 4 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: 10 months ago - Pushed: almost 10 years ago - Stars: 0 - Forks: 0

ptvce/AccountingWinApp

a simple windows project with OOP (Accounting)

Language: C# - Size: 1.91 MB - Last synced: about 1 year ago - Pushed: over 4 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: about 1 year ago - Pushed: over 5 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: about 2 months ago - Pushed: about 5 years ago - Stars: 0 - Forks: 0