C# 中的 GetRange
功能通常在集合類(如 List<T>
,Dictionary<TKey, TValue>
等)中實現(xiàn)。這個功能用于獲取集合中的一部分元素,并返回一個新的集合對象,該對象包含指定范圍的元素。
以下是一個簡單的示例,展示了如何在 List<int>
類中使用 GetRange
方法:
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
// 獲取從索引 2 到索引 5 的元素(包括索引 2 和索引 5)
List<int> range = numbers.GetRange(2, 5 - 2 + 1);
// 輸出結(jié)果
foreach (int number in range)
{
Console.WriteLine(number);
}
}
}
在這個示例中,我們創(chuàng)建了一個包含整數(shù)的列表 numbers
。然后,我們使用 GetRange
方法獲取從索引 2 到索引 5 的元素(包括索引 2 和索引 5),并將結(jié)果存儲在名為 range
的新列表中。最后,我們遍歷 range
列表并輸出其元素。
需要注意的是,GetRange
方法可能會拋出 ArgumentOutOfRangeException
異常,如果提供的索引范圍無效(即起始索引大于結(jié)束索引,或者起始索引小于 0,或者結(jié)束索引超出了集合的范圍)。因此,在使用 GetRange
方法時,需要確保提供的索引范圍是有效的。