Ardalis.GuardClauses
by: Steve Smith (@ardalis)
- 196 total downloads
- Latest version: 3.3.0
A simple package by @ardalis and @nimblepros with guard clause helper methods. See docs for how to extend using your own extension methods defined in your project.
Ardalis.SmartEnum
by: Steve Smith (@ardalis)
- 62 total downloads
- Latest version: 1.0.5
Classes to help produce strongly typed smarter enums in .NET.
Apache.NMS
by: Apache ActiveMQ
- 1.534k total downloads
- Latest version: 2.1.0
Apache NMS (.Net Standard Messaging Library): An abstract interface to Message Oriented Middleware (MOM) providers
Aspose.Pdf
by: Aspose
- 348 total downloads
- Latest version: 18.1.0
Aspose.Pdf for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework).
Aspose.Pdf for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or inset pages; transform pages to image; print PDF documents and much more.
Aspose.PDF
by: Aspose
- 340 total downloads
- Latest version: 24.3.0
Aspose.PDF for .NET is a PDF document creation and manipulation component that enables your .NET applications to read, write and manipulate existing PDF documents without using Adobe Acrobat. It also allows you to create forms and manage form fields embedded in a PDF document. This component is written in managed C# and it allows developers to add PDF creation and manipulation functionality to their Microsoft .NET applications (WinForms, ASP.NET and .NET Compact Framework).
Aspose.PDF for .NET is affordable and offers an incredible wealth of features including PDF compression options; table creation and manipulation; support for graph objects; extensive hyperlink functionality; extended security controls; custom font handling; integration with data sources; add or remove bookmarks; create table of contents; add, update, delete attachments and annotations; import or export PDF form data; add, replace or remove text and images; split, concatenate, extract or insert pages; transform pages to image; print PDF documents and much more.
AsyncUsageAnalyzers
by: Sam Harwell et. al.
- 26 total downloads
- Latest version: 1.0.0-alpha003
A collection of analyzers related to best practices for writing asynchronous code.
AsyncBridge
by: Daniel Grunwald Omer Mor Alex Davies
- 21 total downloads
- Latest version: 0.1.0
Adds the new C#5 async features for .NET 4 and .NET 3.5 projects
Antlr4.Runtime.Standard
by: Eric Vergnaud Terence Parr Sam Harwell
- 34 total downloads
- Latest version: 4.9.0
The .NET Core C# ANTLR 4 runtime from the ANTLR Organization
AntDesign
by: James Yeung
- 4.17k total downloads
- Latest version: 1.0.1
🌈 A set of enterprise-class UI components based on Ant Design and Blazor.
AspNet.ScriptManager.jQuery.UI.Combined
by: Damian Edwards
- 199 total downloads
- Latest version: 1.13.2
This package contains the AspNet.ScriptManager.jQuery.UI.Combined assembly that will automatically register jQuery.UI.Combined 1.13.2 with the ScriptManager as "jquery.ui.combined".
Antlr
by: Sam Harwell Terence Parr
- 63 total downloads
- Latest version: 3.5.0.2
ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
Apache.NMS.ActiveMQ
by: Apache ActiveMQ
- 1.534k total downloads
- Latest version: 1.8.0
Apache NMS (.Net Standard Messaging Library): Openwire implementation of Apache NMS API
AspNet.ScriptManager.jQuery
by: Damian Edwards
- 369 total downloads
- Latest version: 3.7.1
This package contains the AspNet.ScriptManager.jQuery assembly that will automatically register jQuery 3.5.0 with the ScriptManager as "jquery".
Argu
by: Eirik Tsarpalis
- 90 total downloads
- Latest version: 5.0.0
A declarative command line and XML configuration parser for F# applications.
AngleSharp
by: AngleSharp
- 188 total downloads
- Latest version: 0.9.11
AngleSharp is the ultimate angle brackets parser library. It parses HTML5, CSS3, and XML to construct a DOM based on the official W3C specification.
Antlr3.Runtime
by: Sam Harwell Terence Parr
- 53 total downloads
- Latest version: 3.5.2-rc1
The runtime library for parsers generated by the C# target of ANTLR 3. This package supports projects targeting .NET 2.0 or newer, and built using Visual Studio 2008 or newer.
Aspose.Cells
by: Aspose
- 746 total downloads
- Latest version: 24.11.0
A powerful and fast library written in C# for manipulating and converting Excel(XLS, XLSX,XLSB), ODS, CSV,JSON and HTML files.
apache-thrift-netcore
by: The Apache Software Foundation
- 42 total downloads
- Latest version: 0.9.3.2
For .Net Core - naive port, use with caution...
AsyncEnumerator
by: Serge Semenov
- 72 total downloads
- Latest version: 1.4.2
Introduces IAsyncEnumerable, IAsyncEnumerator, ForEachAsync(), and ParallelForEachAsync()
GitHub: https://github.com/tyrotoxin/AsyncEnumerable
PROBLEM SPACE
Helps to (a) create an element provider, where producing an element can take a lot of time
due 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 blocking
the thread (the processing is scheduled on a worker thread instead).
EXAMPLE
using System.Collections.Async;
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 enumerator
static 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 enumeration
static void ConsumeNumbers()
{
// NOTE: IAsyncEnumerable is derived from IEnumerable, so you can use either
var enumerableCollection = ProduceAsyncNumbers(start: 1, end: 10);
//var enumerableCollection = ProduceNumbers(start: 1, end: 10);
foreach (var number in enumerableCollection) {
Console.Out.WriteLine($"{number}");
}
}