在C#中,您可以使用泛型集合來存儲不同類型的對象。為此,您可以使用泛型類List
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
List<object> objects = new List<object>();
objects.Add(10);
objects.Add("Hello");
objects.Add(3.14);
foreach (var obj in objects)
{
if (obj is int)
{
Console.WriteLine($"Integer: {obj}");
}
else if (obj is string)
{
Console.WriteLine($"String: {obj}");
}
else if (obj is double)
{
Console.WriteLine($"Double: {obj}");
}
}
}
}
在這個例子中,我們創建了一個List
您也可以使用Dictionary<TKey, TValue>來存儲不同類型的對象,只需將鍵和值的類型設置為object即可。