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

7 years ago795

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 Magick.NET-Q16-x64

Magick.NET-Q16-x64

7 years ago808

"ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ImageMagick witho…"

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

unknown, Unknown country

Screenshot for .net library or nuget package OctopusTools

OctopusTools

7 years ago931

"Octopus is a user-friendly DevOps tool for developers that supports release management, deployment automation, and operations runbooks.      Thi…"

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

unknown, Unknown country

Screenshot for .net library or nuget package Microsoft.Extensions.HealthChecks.SqlServer

Microsoft.Extensions.HealthChecks.SqlServer

7 years ago779

"Package Description"

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

unknown, Unknown country

Screenshot for .net library or nuget package jquery.TypeScript.DefinitelyTyped

jquery.TypeScript.DefinitelyTyped

7 years ago853

"TypeScript Definitions (d.ts) for jquery. Generated based off the DefinitelyTyped repository [git commit: 2c65d5ca7267fda6d49a3b447c8b089632fb5358]. https://github.com/D…"

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

unknown, Unknown country

Screenshot for .net library or nuget package Serialize.Linq

Serialize.Linq

7 years ago1057

"C# library to serialize LINQ expressions"

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

unknown, Unknown country

Screenshot for .net library or nuget package DotNetOpenAuth.OpenIdInfoCard.UI

DotNetOpenAuth.OpenIdInfoCard.UI

7 years ago876

"Adds an InfoCard button to an OpenID relying party's login button panel. InfoCards enhance user security while mitigating phishing attacks by removing the need f…"

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

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.

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