BuiltWithDot.Net
Projects built with .net framework, .net core, xamarin, mono, mono game, unity, or godot
submit project
don't be shy :-)

"Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync()GitHub: https://github.com/Dasync/AsyncEnumerablePROBLEM SPACEHelps to (a) create an element provider, where producing an element can take a lot of timedue to dependency on other asynchronous events (e.g. wait handles, network streams), and(b) a consumer that processes those element as soon as they are ready without blockingthe thread (the processing is scheduled on a worker thread instead).EXAMPLEusing Dasync.Collections;static IAsyncEnumerable<int> ProduceAsyncNumbers(int start, int end){  return new AsyncEnumerable<int>(async yield => {    // Just to show that ReturnAsync can be used multiple times    await yield.ReturnAsync(start);    for (int number = start + 1; number <= end; number++)      await yield.ReturnAsync(number);    // You can break the enumeration loop with the following call:    yield.Break();    // This won't be executed due to the loop break above    await yield.ReturnAsync(12345);  });}// Just to compare with synchronous version of enumeratorstatic IEnumerable<int> ProduceNumbers(int start, int end){  yield return start;  for (int number = start + 1; number <= end; number++)    yield return number;  yield break;  yield return 12345;}static async Task ConsumeNumbersAsync(){  var asyncEnumerableCollection = ProduceAsyncNumbers(start: 1, end: 10);  await asyncEnumerableCollection.ForEachAsync(async number => {    await Console.Out.WriteLineAsync($"{number}");  });}// Just to compare with synchronous version of enumerationstatic void ConsumeNumbers(){  var enumerableCollection = ProduceNumbers(start: 1, end: 10);  foreach (var number in enumerableCollection) {    Console.Out.WriteLine($"{number}");  }}"

AsyncEnumerator

5 years ago416

Library or NuGet package built with .net standard and c# by sergiis & dasync.

unknown, Unknown country


Embed badge: or

Related projects

Screenshot for .net library or nuget package Microsoft.AspNet.Authentication.Cookies

Microsoft.AspNet.Authentication.Cookies

5 years ago434

"ASP.NET middleware that enables an application to use cookie based authentication, similar to ASP.NET's forms authentication."

Library or NuGet package built with .net standard and c# by Microsoft.

unknown, Unknown country

Screenshot for .net library or nuget package Microsoft.VisualStudio.Shell.Framework

Microsoft.VisualStudio.Shell.Framework

5 years ago434

"Microsoft.VisualStudio.Shell.Framework"

Library or NuGet package built with .net standard and c# by Microsoft.

unknown, Unknown country

Screenshot for .net library or nuget package GeoCoordinate

GeoCoordinate

5 years ago467

"GeoCoordinate is a portable class library (in v1.1.x) or netstandard v1.1 (from v2.x.x) implementation of System.Device.Location.GeoCoordinate. It is an exact 1:1 API co…"

Library or NuGet package built with .net standard and c# by Geoffrey Huntley.

unknown, Unknown country

Screenshot for .net library or nuget package Nancy

Nancy

5 years ago410

"Nancy is a lightweight web framework for the .Net platform, inspired by Sinatra. Nancy aim at delivering a low ceremony approach to building light, fast web applications."

Library or NuGet package built with .net standard and c# by Andreas Håkansson & Steven Robbins and contributors.

unknown, Unknown country

Screenshot for .net library or nuget package Ninject.Web.Common

Ninject.Web.Common

5 years ago466

"Bootstrapper for web projects."

Library or NuGet package built with .net standard and c# by Ninject Project Contributors.

unknown, Unknown country

Screenshot for .net library or nuget package runtime.native.System.IO.Ports

runtime.native.System.IO.Ports

5 years ago412

"Internal implementation package not meant for direct consumption.  Please do not reference directly. When using NuGet 3.x this package requires at least version 3.4."

Library or NuGet package built with .net standard and c# by Microsoft.

unknown, Unknown country

A little bit about this site

Hello, I'm Corstiaan. I'm a software developer from the Netherlands and I manage BuiltWithDot.Net. I created this site as a place where developers working with .net technology can showcase their projects and inspire other developers.

There's so much you can build with .net these days that I thought it would be nice to have a corner of the web dedicated to the breadth of .net. Enjoy!

What is the .net community working on?

Get weekly updates about new projects built with .net tech

Great! Click the link in the e-mail to confirm. Check the spam folder if you can't find it.

No spam. Unsubscribe any time.

© 2024 - created by Corstiaan Hesselink - submit project - RSS feed - contact