首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

在C#中返回SortedList中的第一个元素

在C#中,可以使用SortedList类来创建一个排序的键值对集合。要返回SortedList中的第一个元素,可以使用Keys属性和Values属性来获取键和值的列表,然后使用ListFirst()方法来获取第一个元素。

以下是一个示例代码:

代码语言:csharp
复制
SortedList<int, string> sortedList = new SortedList<int, string>();
sortedList.Add(1, "one");
sortedList.Add(3, "three");
sortedList.Add(2, "two");

int firstKey = sortedList.Keys.First();
string firstValue = sortedList.Values.First();

Console.WriteLine($"The first key is {firstKey} and the first value is {firstValue}");

输出:

代码语言:txt
复制
The first key is 1 and the first value is one

在这个示例中,我们创建了一个SortedList,其中包含三个元素。然后,我们使用Keys属性和Values属性来获取键和值的列表,并使用First()方法来获取第一个元素。最后,我们将结果打印到控制台上。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券