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.

    Language:C#659554
  • farseer-go/collections

    Support for List collections and linq syntax

    Language:Go42101
  • Dirkster99/TreeLib

    A .Net Standard Library with Generic methods to traverse k-ary trees in any order required.

    Language:C#27517
  • neon-sunset/RangeExtensions

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

    Language:C#17420
  • michaelmeling/StreamThreads

    Coroutine library for C#

    Language:C#13202
  • inputfalken/Sharpy

    💫 Generate fake data with fluent syntax.

    Language:C#7301
  • alfonsohdez08/umbrella

    Create .NET DataTable using projections

    Language:C#51152
  • bzaar/EnumerableToStream

    Streams an IEnumerable<string>

    Language:C#5200
  • SongulSYTRK/Data_Access

    İn this Repository, has meaning of ORM , EntityFramework, Lazy-Eager Loading , DbFirst , CodeFirst, Linq To EF, Linq to SQL,

    Language:C#4200
  • VanHakobyan/Different-Projects

    :fist:Visual Studio 2015, .NET Framework 4.6 , Yield ,IEnumerator, IEnumerable, Interface, Math, Iterator,Pow

    Language:C#310
  • asieradzk/IEnumerableUnpacker

    Unzip your IEnumerables with IEnumerable Unpacker. A small library for optimal collection unzipping in C#

    Language:C#2110
  • EscanBE/go-ienumerable

    C# famous IEnumerable<T> ported to Golang

    Language:Go2000
  • soenneker/soenneker.extensions.enumerable

    A collection of helpful enumerable extension methods

    Language:C#221
  • wbaldoumas/atrea-extensions

    Useful extension methods for .NET.

    Language:C#2110
  • collenirwin/ToPage

    Tiny paging library for .NET with support for EF Core and EF6

    Language:C#1251
  • banbh/CoEnumerable

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

    Language:C#0100
  • 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#0100
  • DVR98/ClassHierarchy

    Using Interfaces, Inheritance. How to create Abstract and Sealed classes, Using famous built-in .NET Framework Interfaces (IComparable, IEnumerable)

    Language:C#0100
  • JeyDotC/jeydotc-enumerable

    An enumerable class that mimics the concepts of .Net's IEnumerable interface, but with slight adaptations for PHP.

    Language:PHP0300
  • ptvce/AccountingWinApp

    a simple windows project with OOP (Accounting)

    Language:C#0100
  • sangam10/IEnumerablevsIQueryable

    The difference between IEnumerable and IQueryable in c#

    Language:C#0100
  • sharpyr/Veho

    iterable toolset

    Language:C#0200
  • sushantpt/Understanding_Iterators

    Code snippets of "Iterators: Effortless sequencing"

    Language:C#0100
  • alexander-harmaty/LinkedList-Implements-IEnumerable-Example

    FSC-BCS-426: C# Programming Lab 4

    Language:C#10
  • DamirsCorner/20221216-linq-deferred-execution

    Sample project for 'Beware of LINQ deferred execution' blogpost

    Language:C#20
  • Eatmeta/ReadonlyBytes

    The Practice "Readonly Bytes"

    Language:C#10
  • Eatmeta/Smooth

    The Practice "IEnumerable"

    Language:C#10
  • 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#10
  • ghost1face/System.Linq.Dynamic

    This is the Microsoft assembly for the .Net 4.0 Dynamic language functionality.

    Language:C#20
  • 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#
  • 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#10
  • 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#10
  • parfeniuk/UnitTest_Collection

    Simple unit tests examples for Collection objects

    Language:C#10
  • rafaelporto/Practices.YieldReturn

    Este projeto é o resultado da prática do código apresentado no vídeo da EximiaCo sobre Yield return.

    Language:C#10
  • SatSargsyan/IEnumerable

    It's a program, which is calculating Fibonacci numbers, using yield return(.net framework 4.6,C# 6.0).

    Language:C#10