UnmanagedMemory 2.5.0
'UnsafeList' Throws a `MemoryLeakException` after disposal.
See the version list below for details.
dotnet add package UnmanagedMemory --version 2.5.0
NuGet\Install-Package UnmanagedMemory -Version 2.5.0
<PackageReference Include="UnmanagedMemory" Version="2.5.0" />
<PackageVersion Include="UnmanagedMemory" Version="2.5.0" />
<PackageReference Include="UnmanagedMemory" />
paket add UnmanagedMemory --version 2.5.0
#r "nuget: UnmanagedMemory, 2.5.0"
#:package UnmanagedMemory@2.5.0
#addin nuget:?package=UnmanagedMemory&version=2.5.0
#tool nuget:?package=UnmanagedMemory&version=2.5.0
UnmanagedMemory
A .NET library for safe and efficient allocation and management of unmanaged memory, with a modern, idiomatic API. Designed for high-performance scenarios where direct memory control is required.
Features
- Safe Unmanaged Memory Allocation: Allocate, free, and work with unmanaged memory using familiar .NET patterns.
- Span<T> Support: Expose unmanaged memory as
Span<T>
for fast, safe access. - LINQ Integration: Use LINQ queries directly on unmanaged memory buffers.
- Disposal Pattern: Implements
IDisposable
for deterministic cleanup. - Unsafe Operations: Allows advanced scenarios with pointers when needed.
- .NET Standard 2.1+: Broad compatibility across .NET platforms.
Getting Started
Installation
Install via NuGet:
dotnet add package UnmanagedMemory
Basic Usage
using UnmanagedMemory;
// Allocate unmanaged memory for 10 integers
using var memory = new UnsafeMemory<int>(10);
// Fill the memory with a value
memory.AsSpan().Fill(25);
// Set a specific element
memory[9] = 20;
// LINQ query on the buffer
var filtered = memory.Where(x => x > 20);
Console.WriteLine($"[{string.Join(", ", filtered)}]");
// Access raw pointer (unsafe context)
unsafe
{
var ptr = memory.AsUnsafePointer();
}
API Overview
UnsafeMemory<T>
A disposable wrapper for a block of unmanaged memory.
new UnsafeMemory<T>(int length)
: Allocates memory forlength
elements.Span<T> AsSpan()
: Access the memory as a span.T this[int index]
: Indexer for element access.- Implements
IEnumerable<T>
for LINQ support.
Unmanaged
Static helpers for raw memory allocation.
IntPtr Malloc(int bytes)
: Allocates a block of unmanaged memory.void Free(ref IntPtr ptr)
: Frees unmanaged memory and nulls the pointer.
Example
using var memory = new UnsafeMemory<float>(100);
memory.AsSpan().Fill(3.14f);
foreach (var value in memory.Where(x => x > 3.0f))
Console.WriteLine(value);
NativeStringBuilder
using var nativeBuilder = new NativeStringBuilder();
nativeBuilder
.Append("Hello")
.Append(',')
.Append(" ")
.Append("World")
.Append('!');
var txt = nativeBuilder.ToString();
FileUtility
using UnsafeMemory<byte> bytes = await FileUtility.ReadAllBytesAsync("/path/to/file");
// Use the bytes.
UnsafeMemoryExtensions
using UnsafeMemory<int> memory = Enumerable
.Range(0, 25)
.ToUnsafeMemory();
Requirements
- .NET Standard 2.1 or later (.NET Core 3.0+, .NET 5+, .NET 6+, .NET 7+, .NET 8+, .NET 9+)
License
MIT © BosonWare, Technologies
Links
Release Notes
Breaking changes:
- This Version contains no breaking changes.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on UnmanagedMemory:
Package | Downloads |
---|---|
BosonWare.Runtime
A high-performance .NET runtime library for building applications with advanced caching and persistence capabilities. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Added Useful Extensions:
- Creating an UnsafeMemory from any IEnumerable.
Added UnmanagedTypes:
- UnsafeList (Experimental)
Added more documentation.