Launched this week
UnmangedMemory
A high-performance unmanaged memory library for .NET
7 followers
A high-performance unmanaged memory library for .NET
7 followers
A high-performance unmanaged memory library forNET, providing efficient memory management and manipulation capabilities. - BosonWareKE/UnmanagedMemory

the span-based design here is genuinely clever, basically letting you slice into unmanaged buffers without juggling pointers manually. honestly respect the focus on zero-allocation paths, that kind of discipline is rare in .NET libraries lately
Spent a weekend swapping out some manual allocations in a hot path with this and the throughput bump was noticeable right away. The unsafe span helpers feel really close to the metal without being painful to use.
It would be really helpful to see a small benchmark suite or example projects in the repo showing how this compares to standard .NET memory APIs. That would make it much easier for folks like me to evaluate if the performance gains are worth integrating.