Microsoft.Bcl.Memory 9.0.20

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 Index and Range types on older .NET platforms.
  • Provides Base64Url encoding, 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.Index
  • System.Range
  • System.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.

Showing the top 20 packages that depend on Microsoft.Bcl.Memory.

Packages Downloads
ModelContextProtocol.Core
Core .NET SDK for the Model Context Protocol (MCP)
3
Microsoft.Agents.AI.OpenAI
Provides Microsoft Agent Framework support for OpenAI.
3
Aspose.PDF
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.
3
System.Linq.AsyncEnumerable
System.Linq.AsyncEnumerable
2
Microsoft.Agents.AI.OpenAI
Provides Microsoft Agent Framework support for OpenAI.
2
Microsoft.Agents.AI
Provides Microsoft Agent Framework core functionality.
2
Microsoft.ML.Tokenizers
Microsoft.ML.Tokenizers contains the implmentation of the tokenization used in the NLP transforms.
2

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
11.0.0-rc.1.26425.128 1 2026/9/16
11.0.0-preview.7.26381.103 1 2026/9/17
11.0.0-preview.6.26359.118 1 2026/9/17
11.0.0-preview.5.26302.115 1 2026/9/17
11.0.0-preview.4.26230.115 1 2026/9/17
11.0.0-preview.3.26207.106 1 2026/9/17
11.0.0-preview.2.26159.112 1 2026/9/17
11.0.0-preview.1.26104.118 1 2026/9/17
10.0.12 1 2026/9/16
10.0.11 1 2026/9/16
10.0.10 1 2026/9/16
10.0.9 1 2026/9/17
10.0.8 1 2026/9/17
10.0.7 1 2026/9/17
10.0.6 1 2026/9/17
10.0.5 1 2026/9/17
10.0.4 1 2026/9/17
10.0.3 1 2026/9/17
10.0.2 1 2026/9/17
10.0.1 1 2026/9/17
10.0.0 1 2026/9/17
10.0.0-rc.2.25502.107 1 2026/9/16
10.0.0-rc.1.25451.107 1 2026/9/16
10.0.0-preview.7.25380.108 1 2026/9/17
10.0.0-preview.6.25358.103 1 2026/9/17
10.0.0-preview.5.25277.114 1 2026/9/17
10.0.0-preview.4.25258.110 1 2026/9/17
10.0.0-preview.3.25171.5 1 2026/9/17
10.0.0-preview.2.25163.2 1 2026/9/17
10.0.0-preview.1.25080.5 1 2026/9/17
9.0.20 1 2026/9/17
9.0.19 1 2026/9/17
9.0.18 1 2026/9/17
9.0.17 1 2026/9/17
9.0.16 1 2026/9/17
9.0.15 1 2026/9/17
9.0.14 1 2026/9/17
9.0.13 1 2026/9/17
9.0.12 1 2026/9/17
9.0.11 1 2026/9/17
9.0.10 1 2026/9/17
9.0.9 1 2026/9/16
9.0.8 1 2026/9/16
9.0.7 1 2026/9/16
9.0.6 1 2026/9/16
9.0.5 1 2026/9/16
9.0.4 1 2026/9/16
9.0.3 1 2026/9/16
9.0.2 1 2026/9/16
9.0.1 1 2026/9/16
9.0.0 0 2024/11/12
9.0.0-rc.2.24473.5 1 2026/9/17
9.0.0-rc.1.24431.7 1 2026/9/17
9.0.0-preview.7.24405.7 1 2026/9/17