.NEXT 3.x
.NEXT (dotNext) is the family of powerful libaries aimed to improve development productivity and extend .NET API with unique features which potentially will be implemented in the next versions of C# compiler or .NET Runtime.
Important
The repo has been transferred to .NET Foundation. This documentation is no longer maintained. Up-to-date version of documentation is located here. The sources are here.
This chapter gives quick overview of these libraries. Read articles for closer look at all available features.
Prerequisites:
- Runtime: .NET 5 or any runtime compatible with .NET Standard 2.1
- OS: Linux, Windows, MacOS
- Architecture: any if supported by underlying .NET Runtime
DotNext
This library is the core of .NEXT which extends .NET standard library with
- Enum API to work with arbitrary enum types
- Thread-safe advanced atomic operations to work with int, long, bool, double, float, IntPtr, arbitrary reference and value types
- Unified representation of various synchronization primitives in the form of the lock
- Generic specialization with constant values
- Generation of random strings
- Low-level methods to work with value types
- Fast comparison of arrays
- Ad-hoc user data associated with arbitrary object
- Rich set of advanced buffer types
DotNext.Reflection
.NET Reflection is slow because relies on late-bound calls when every actual argument should be validated. There is alternative approach: dynamic code generation optimized for every member call. Reflection library from .NEXT family provides provides fully-featured fast reflection using dynamic code generation. Invocation cost is comparable to direct call. Check Benchmarks to see how it is fast.
Additionally, the library provides support of Type Classes. You don't need to wait C# language of version X to obtain this feature.
DotNext.Metaprogramming
This library provides a rich API to write and execute code on-the-fly. It extends C# Expression Tree programming model with ordinary things for C# such as foreach
loop, for
loop, while
loop, using
statement, lock
statement, string interpolation and even asynchronous lambda expressions with full support of async
/await
semantics.
DotNext.Unsafe
This library provides a special types to work with unmanaged memory in safe manner:
- Structured access to unmanaged memory
- Unmanaged memory pool
- Interop with unmanaged memory via Memory value type
- CLS-compliant generic pointer type for .NET languages without direct support of such type. Use this feature to work with pointers from VB.NET or F#.
- Atomic thread-safe operations applicable to data placed into unmanaged memory: increment, decrement, compare-and-set etc, volatile access
DotNext.Threading
The library allows you to reuse experience of blocking synchronization with help of ReaderWriteLockSlim, CountdownEvent and friends in asynchronous code using their alternatives such as asynchronous locks.
The following code describes these alternative implementations of synchronization primitives for asynchronous code:
Synchronization Primitive | Asynchronous Version |
---|---|
ReaderWriteLockSlim | AsyncReaderWriterLock |
Monitor | AsyncExclusiveLock |
ManualResetEvent | AsyncManualResetEvent |
AutoResetEvent | AsyncAutoResetEvent |
Barrier | AsyncBarrier |
CountdownEvent | AsyncCountdownEvent |
But this is not all features of this library. Read more here.
DotNext.IO
Extending streams and I/O pipelines with methods for reading and writing typed values including strings asynchronously. Arbitrary character encodings are supported. Now encoding or decoding data using pipes is much easier and comparable with BinaryWriter or BinaryReader. Read more here.
DotNext.Net.Cluster
Provides rich framework for building clustered microservices based on network consensus and distributed messaging. It includes transport-agnostic implementation of Raft Consensus Algorithm that can be adopted for any communication protocol, TCP/UDP transports for Raft, high-performance persistent Write-Ahead Log suitable for general-purpose usage.
DotNext.AspNetCore.Cluster
Allows to build clustered microservices which rely on network consensus and distributed messaging with ASP.NET Core framework. This library contains HTTP-based implementation of Raft Consensus Algorithm, HTTP-based distributed messaging across cluster nodes, cluster leader detection, automatic redirection to leader node and many other things.