Microsoft.Bcl.Memory
9.0.8
Prefix Reserved
| Advisory: https://github.com/advisories/GHSA-73j8-2gch-69rq | Severity: high |
See the version list below for details.
dotnet add package Microsoft.Bcl.Memory --version 9.0.8
NuGet\Install-Package Microsoft.Bcl.Memory -Version 9.0.8
<PackageReference Include="Microsoft.Bcl.Memory" Version="9.0.8" />
<PackageVersion Include="Microsoft.Bcl.Memory" Version="9.0.8" />
<PackageReference Include="Microsoft.Bcl.Memory" />
paket add Microsoft.Bcl.Memory --version 9.0.8
#r "nuget: Microsoft.Bcl.Memory, 9.0.8"
#:package Microsoft.Bcl.Memory@9.0.8
#addin nuget:?package=Microsoft.Bcl.Memory&version=9.0.8
#tool nuget:?package=Microsoft.Bcl.Memory&version=9.0.8
About
Provides Index and Range types to simplify slicing operations on collections for .NET Framework and .NET Standard 2.0.
Provides Base64Url for encoding data in a URL-safe manner on .NET Framework and .NET Standard.
This library is not necessary nor recommended when targeting versions of .NET that include the relevant support.
Key Features
- Enables the use of
IndexandRangetypes on older .NET platforms. - Provides
Base64Urlencoding, decoding, and validation for URL-safe data processing on older .NET platforms.
How to Use
The Index and Range types simplify working with slices of arrays, strings, or other collections.
string[] words = ["The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"];
// Use Index to reference the last element
Console.WriteLine(words[^1]);
// Output: "dog"
// Use Range to reference a slice
string[] phrase = words[1..4];
Console.WriteLine(string.Join(" ", phrase));
// Output: "quick brown fox"
Base64Url encoding is a URL-safe version of Base64, commonly used in web applications, such as JWT tokens.
using System.Buffers.Text;
using System.Text;
// Original data
byte[] data = Encoding.UTF8.GetBytes("Hello World!");
Span<byte> encoded = new byte[Base64Url.GetEncodedLength(data.Length)];
Base64Url.EncodeToUtf8(data, encoded, out int _, out int bytesWritten);
string encodedString = Base64Url.EncodeToString(data);
Console.WriteLine($"Encoded: {encodedString}");
// Encoded: SGVsbG8gV29ybGQh
Span<byte> decoded = new byte[data.Length];
Base64Url.DecodeFromUtf8(encoded[..bytesWritten], decoded, out _, out bytesWritten);
string decodedString = Encoding.UTF8.GetString(decoded[..bytesWritten]);
Console.WriteLine($"Decoded: {decodedString}");
// Decoded: Hello World!
Main Types
The main types provided by this library are:
System.IndexSystem.RangeSystem.Buffers.Text.Base64Url
Additional Documentation
API documentation
Feedback & Contributing
Microsoft.Bcl.Memory is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
| 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 is compatible. 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 is compatible. 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 | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.0
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
.NETStandard 2.1
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
-
net8.0
- No dependencies.
-
net9.0
- No dependencies.
NuGet packages (229)
Showing the top 5 NuGet packages that depend on Microsoft.Bcl.Memory:
| Package | Downloads |
|---|---|
|
Microsoft.Azure.Functions.Worker.Core
This library provides the core functionality to build an Azure Functions .NET Worker, adding support for the isolated, out-of-process execution model. |
|
|
Microsoft.Extensions.ServiceDiscovery.Abstractions
Provides abstractions for service discovery. Interfaces defined in this package are implemented in Microsoft.Extensions.ServiceDiscovery and other service discovery packages. |
|
|
Duende.IdentityModel
OpenID Connect & OAuth 2.0 client library |
|
|
Microsoft.Azure.Functions.Worker.Extensions.DurableTask
Durable Task extension for .NET isolated functions |
|
|
Microsoft.Extensions.VectorData.Abstractions
Abstractions for vector database access. Commonly Used Types: Microsoft.Extensions.VectorData.IVectorStore Microsoft.Extensions.VectorData.IVectorStoreRecordCollection<TKey, TRecord> |
GitHub repositories (26)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Bcl.Memory:
| Repository | Stars |
|---|---|
|
dotnet/machinelearning
ML.NET is an open source and cross-platform machine learning framework for .NET.
|
|
|
microsoft/aspire
Aspire is the tool for code-first, extensible, observable dev and deploy.
|
|
|
Cysharp/ZLinq
Zero allocation LINQ with LINQ to Span, LINQ to SIMD, and LINQ to Tree (FileSystem, JSON, GameObject, etc.) for all .NET platforms and Unity, Godot.
|
|
|
dotnet/Open-XML-SDK
Open XML SDK by Microsoft
|
|
|
modelcontextprotocol/csharp-sdk
The official C# SDK for Model Context Protocol servers and clients. Maintained in collaboration with Microsoft.
|
|
|
dotnet/command-line-api
Command line parsing, invocation, and rendering of terminal output.
|
|
|
mini-software/MiniExcel
Fast, Low-Memory, Easy Excel .NET helper to import/export/template spreadsheet (support Linux, Mac)
|
|
|
netwrix/pingcastle
PingCastle - Get Active Directory Security at 80% in 20% of the time
|
|
|
passwordless-lib/fido2-net-lib
Passkeys, FIDO2 and WebAuhtn .NET library.
|
|
|
dnnsoftware/Dnn.Platform
DNN (formerly DotNetNuke) is the leading open source web content management platform (CMS) in the Microsoft ecosystem.
|
|
|
visualHFT/VisualHFT
VisualHFT is a WPF/C# desktop GUI that shows market microstructure in real time. You can track advanced limit‑order‑book dynamics and execution quality, then use its modular plugins to shape the analysis to your workflow.
|
|
|
dotnet/dotnet
Home of .NET's Virtual Monolithic Repository which includes all the code needed to build the .NET SDK.
|
|
|
Azure/azure-functions-dotnet-worker
Azure Functions out-of-process .NET language worker
|
|
|
SimonCropp/Polyfill
Source only package that exposes newer APIs, .net features, and C# features to older runtimes.
|
|
|
Syslifters/offsec-tools
Compiled tools for internal assessments
|
|
|
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
|
|
|
UE-Explorer/UE-Explorer
UnrealScript decompiler and explorer tool for Unreal Engine packages.
|
|
|
teknogods/TeknoParrotUI
Open Source JVS / Arcade Emulator for Windows
|
|
|
martinjw/dbschemareader
Read database metadata (from SqlServer/Oracle/MySql/SQLite/PostgreSql/DB2 etc) into one simple model
|
|
|
PederHP/mcpdotnet
.NET implementation of the Model Context Protocol (MCP)
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 11.0.0-preview.3.26207.106 | 0 | 4/14/2026 | |
| 11.0.0-preview.2.26159.112 | 646 | 3/10/2026 | |
| 11.0.0-preview.1.26104.118 | 416 | 2/10/2026 | |
| 10.0.5 | 321,850 | 3/12/2026 | |
| 10.0.4 | 384,481 | 3/10/2026 | |
| 10.0.3 | 80,729 | 2/10/2026 | |
| 10.0.2 | 212,819 | 1/13/2026 | |
| 10.0.1 | 169,723 | 12/9/2025 | |
| 10.0.0 | 1,606,758 | 11/11/2025 | |
| 10.0.0-rc.2.25502.107 | 27,145 | 10/14/2025 | |
| 10.0.0-rc.1.25451.107 | 15,723 | 9/9/2025 | |
| 10.0.0-preview.7.25380.108 | 881 | 8/12/2025 | |
| 10.0.0-preview.6.25358.103 | 2,281 | 7/15/2025 | |
| 9.0.14 | 299,804 | 3/10/2026 | |
| 9.0.13 | 3,957 | 2/10/2026 | |
| 9.0.12 | 9,162 | 1/13/2026 | |
| 9.0.11 | 31,505 | 11/11/2025 | |
| 9.0.10 | 143,235 | 10/14/2025 | |
| 9.0.9 | 177,337 | 9/9/2025 | |
| 9.0.8 | 166,532 | 8/4/2025 |