在C# 2008和.NET 3.5平台中,如何编写代码来创建和操作泛型列表?请提供具体的操作示例。
时间: 2024-11-21 21:43:27 浏览: 22
泛型列表是.NET框架中一个非常重要的集合类型,它允许存储任何类型的数据,并且在编译时提供类型安全检查。在C# 2008版本和.NET 3.5框架中创建和操作泛型列表,可以通过System.Collections.Generic命名空间中的List<T>类来实现。首先,需要引入命名空间using System.Collections.Generic;。然后,你可以声明一个泛型列表并添加、删除或查找元素。以下是一个示例代码,展示了如何创建泛型列表,并执行添加、删除和查找等操作:
参考资源链接:[最新C#圣经级书籍 Pro C# 2008 and the .NET 3.5 Platform](https://wenku.csdn.net/doc/1d3a4may52?spm=1055.2569.3001.10343)
```csharp
using System;
using System.Collections.Generic;
namespace GenericListExample
{
class Program
{
static void Main(string[] args)
{
// 创建泛型列表并初始化
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
// 添加元素
numbers.Add(6);
// 删除元素
numbers.Remove(2);
// 查找元素索引
int index = numbers.IndexOf(4);
// 遍历列表
foreach (var number in numbers)
{
Console.WriteLine(number);
}
// 输出找到的元素索引
Console.WriteLine(
参考资源链接:[最新C#圣经级书籍 Pro C# 2008 and the .NET 3.5 Platform](https://wenku.csdn.net/doc/1d3a4may52?spm=1055.2569.3001.10343)
阅读全文