Microsoft.Bcl.Memory 10.0.12

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 older .NET platforms. Provides Utf8 for converting chunked data between UTF-8 and UTF-16 encodings on .NET Framework and .NET Standard 2.0.

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 .NET Framework and .NET Standard 2.0.
  • Provides Base64Url encoding, decoding, and validation for URL-safe data processing on older .NET platforms.
  • Provides Utf8 encoding, decoding, and validation for chunked data between UTF-8 and UTF-16 on .NET Framework and .NET Standard 2.0.

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
  • System.Text.Unicode.Utf8

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
NATS.Client.Core
NATS core client for .NET
53
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
52
System.Linq.AsyncEnumerable
System.Linq.AsyncEnumerable
51
Microsoft.Extensions.ServiceDiscovery
Provides extensions to HttpClient that enable service discovery based on configuration.
50
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
50
NATS.Client.Core
NATS core client for .NET
48
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
48
Microsoft.Extensions.ServiceDiscovery
Provides extensions to HttpClient that enable service discovery based on configuration.
47
NATS.Client.Core
NATS core client for .NET
46
Microsoft.Extensions.ServiceDiscovery
Provides extensions to HttpClient that enable service discovery based on configuration.
45
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.
45
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
45
NATS.Client.Core
NATS core client for .NET
45
System.Linq.AsyncEnumerable
System.Linq.AsyncEnumerable
44
Duende.IdentityModel
OpenID Connect & OAuth 2.0 client library
44
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.
43
System.Linq.AsyncEnumerable
System.Linq.AsyncEnumerable
43
IndexRange
Implementations of System.Index and System.Range for netstandard2.0 and .NET Framework.
43

.NET Framework 4.6.2

.NET 8.0

  • No dependencies.

.NET 9.0

  • No dependencies.

.NET 10.0

  • No dependencies.

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
11.0.0-rc.1.26425.128 10 09/10/2026
11.0.0-preview.7.26381.103 12 08/13/2026
11.0.0-preview.6.26359.118 16 07/20/2026
11.0.0-preview.5.26302.115 14 06/16/2026
11.0.0-preview.4.26230.115 34 05/14/2026
11.0.0-preview.3.26207.106 36 04/18/2026
11.0.0-preview.2.26159.112 48 03/11/2026
11.0.0-preview.1.26104.118 30 02/15/2026
10.0.12 12 09/10/2026
10.0.11 15 08/13/2026
10.0.10 12 07/20/2026
10.0.9 20 06/14/2026
10.0.8 27 05/15/2026
10.0.7 32 04/23/2026
10.0.6 38 04/18/2026
10.0.5 32 03/14/2026
10.0.4 46 03/11/2026
10.0.3 38 02/12/2026
10.0.2 40 01/16/2026
10.0.1 50 12/11/2025
10.0.0 41 12/11/2025
10.0.0-rc.2.25502.107 37 12/20/2025
10.0.0-rc.1.25451.107 32 12/14/2025
10.0.0-preview.7.25380.108 31 01/03/2026
10.0.0-preview.6.25358.103 38 12/18/2025
10.0.0-preview.5.25277.114 27 01/06/2026
10.0.0-preview.4.25258.110 30 12/20/2025
10.0.0-preview.3.25171.5 27 12/21/2025
10.0.0-preview.2.25163.2 30 12/18/2025
10.0.0-preview.1.25080.5 29 12/11/2025
9.0.20 9 09/10/2026
9.0.19 13 08/13/2026
9.0.18 15 07/19/2026
9.0.17 16 06/16/2026
9.0.16 33 05/15/2026
9.0.15 38 04/18/2026
9.0.14 40 03/11/2026
9.0.13 31 02/12/2026
9.0.12 32 01/16/2026
9.0.11 32 12/23/2025
9.0.10 28 12/21/2025
9.0.9 37 12/23/2025
9.0.8 33 12/11/2025
9.0.7 28 12/27/2025
9.0.6 43 12/13/2025
9.0.5 41 12/11/2025
9.0.4 41 12/11/2025
9.0.3 39 01/04/2026
9.0.2 50 12/13/2025
9.0.1 35 12/16/2025
9.0.0 35 12/18/2025
9.0.0-rc.2.24473.5 36 12/22/2025
9.0.0-rc.1.24431.7 26 12/14/2025
9.0.0-preview.7.24405.7 34 12/12/2025