Microsoft.Bcl.Memory 9.0.9
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.
Showing the top 20 packages that depend on Microsoft.Bcl.Memory.
| Packages | Downloads |
|---|---|
|
Duende.IdentityModel
OpenID Connect & OAuth 2.0 client library
|
8 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
51 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
53 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
55 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
59 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
67 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
76 |
|
Microsoft.IdentityModel.Tokens
Includes types that provide support for SecurityTokens, Cryptographic operations: Signing, Verifying Signatures, Encryption.
|
175 |
|
System.Linq.AsyncEnumerable
System.Linq.AsyncEnumerable
|
7 |
|
System.Linq.AsyncEnumerable
System.Linq.AsyncEnumerable
|
8 |
.NET Framework 4.6.2
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.ValueTuple (>= 4.5.0)
.NET 8.0
- No dependencies.
.NET 9.0
- No dependencies.
.NET Standard 2.0
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
.NET Standard 2.1
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
| Version | Downloads | Last updated |
|---|---|---|
| 10.0.0-rc.2.25502.107 | 6 | 10/15/2025 |
| 10.0.0-rc.1.25451.107 | 16 | 09/12/2025 |
| 10.0.0-preview.7.25380.108 | 19 | 08/16/2025 |
| 10.0.0-preview.6.25358.103 | 25 | 07/16/2025 |
| 10.0.0-preview.5.25277.114 | 31 | 06/06/2025 |
| 10.0.0-preview.4.25258.110 | 30 | 05/17/2025 |
| 10.0.0-preview.3.25171.5 | 37 | 04/11/2025 |
| 10.0.0-preview.2.25163.2 | 39 | 04/05/2025 |
| 10.0.0-preview.1.25080.5 | 42 | 04/07/2025 |
| 9.0.10 | 8 | 10/15/2025 |
| 9.0.9 | 15 | 09/12/2025 |
| 9.0.8 | 21 | 08/07/2025 |
| 9.0.7 | 26 | 07/11/2025 |
| 9.0.6 | 29 | 06/15/2025 |
| 9.0.5 | 36 | 05/18/2025 |
| 9.0.4 | 41 | 04/11/2025 |
| 9.0.3 | 44 | 04/07/2025 |
| 9.0.2 | 35 | 04/06/2025 |
| 9.0.1 | 47 | 04/07/2025 |
| 9.0.0 | 35 | 04/07/2025 |
| 9.0.0-rc.2.24473.5 | 38 | 04/07/2025 |
| 9.0.0-rc.1.24431.7 | 40 | 04/06/2025 |
| 9.0.0-preview.7.24405.7 | 40 | 04/07/2025 |