我们可以在通用列表中进行类型转换,例如在字符串中创建列表并尝试添加和检索 int 值...例如:
class Program
{
static void Main()
{
List<int> list = new List<int>();
list.Add(2);
list.Add(3);
list.Add("prakash");
list.Add("arun");
}
for (int i = 0; i < list.Count; i++) // Loop through List with for
{
Console.WriteLine(list[i]);
}
}