IndexRange 1.1.0

About

This package lets you use the C# 8.0 index and range features in projects that target .NET Framework.

For projects that target netstandard2.0 or .NET Framework 4.6.2 or later, use the Microsoft.Bcl.Memory package instead. This package should be considered deprecated for those target frameworks.

This library is not necessary nor recommended when targeting versions of .NET that include the relevant support.

Using Range with Arrays

The C# compiler needs the RuntimeHelpers.GetSubArray<T> method to be available to create subranges from arrays. This method is only available in netstandard2.1 and .NET Core 3.0, so creating subranges from arrays will fail to compile in .NET Framework.

Use Span<T>

A workaround is to add a reference to System.Memory and use Span<T>. Not only does this compile, it's much more efficient as it doesn't create a new array and copy the sliced data to it:

int[] array = new[] { 1, 2, 3, 4, 5, 6 };

// don't do this:
// var slice = array[1..^1];

// do this:
var slice = array.AsSpan()[1..^1];

Define GetSubArray<T>

The other fix is to define the necessary method in your source code. Copy the following code into your project:

https://gist.github.com/bgrainger/fb2c18659c2cdfce494c82a8c4803360

That type is not in this NuGet package so that the C# compiler doesn't warn that The predefined type 'RuntimeHelpers' is defined in multiple assemblies.

Showing the top 20 packages that depend on IndexRange.

Packages Downloads
Semver
A semantic version library fully compliant with v2.0.0 of the spec found at http://semver.org.
18
Semver
A SemVer implementation in .Net based on v2.0.0 of the spec found at http://semver.org
17
Semver
A SemVer implementation in .Net based on v2.0.0 of the spec found at http://semver.org
18
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram.
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: - Added ReplyMarkup.RemoveKeyboard, ReplyMarkup.ForceReply - Implicit ReplyMarkup conversion for (text, callback/url) tuple(s)
6
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: - Bot API 9.2 - Added ChatMember.ExpireDate helper (= generic UntilDate) - implicit InputFile(string) InputFileId(string) now allows null string (and return null)
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: - Bot API 9.4 (https://core.telegram.org/bots/api-changelog#february-9-2026) - Implicit construction of ChatId from User - fix type (int -> long) for Rating & Amount fields
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: - SendHtml now returns Message[] - Support &amp; &lt; &gt; &quot; in SendHtml and HtmlText.Escape - Also generating &quot; in msg.ToHtml() - Fix ChatId operator == : true if both chatId are null, true for different casing username (@channel == @CHANNEL) - override ToString for InputFile* classes => (Id, Url, "stream://..") - Added ApiResponse to JsonBotSerializerContext (#1478)
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: Added ChatMember.ExpireDate helper (= generic UntilDate)
6
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: Added ReplyMarkup.RemoveKeyboard, ReplyMarkup.ForceReply and implicit ReplyMarkup conversion for (text, callback/url) tuple(s)
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: Bot API 9.0
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: Bot API 9.0b (CanDeleteSentMessages)
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: fix type (int -> long) for Amount & Rating fields
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: Sealed some internal types for performance
5
Telegram.Bot
This library gives you easy access to Telegram Bot API so you can start building useful bots for Telegram. Release Notes: SendHtml: combine captions if found both above & below media
6

* Type-forward implementations to Microsoft.Bcl.Memory for netstandard2.0, net462, and higher.

.NET Framework 3.5

.NET Framework 4.5

.NET Framework 4.6.2

.NET Framework 4.7

UAP 10.0.10240

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
1.1.0 13 08/18/2025
1.0.3 19 03/08/2025
1.0.2 17 03/08/2025
1.0.1 17 03/08/2025
1.0.0 16 03/08/2025