如何创建一个包含字符串值和int值的列表? 任何人都可以帮助我。是否可以创建具有不同数据类型的列表?
答案 0 :(得分:10)
List<T>
是同质的。唯一真正的方法是使用List<object>
来存储任何值。
答案 1 :(得分:9)
您可以使用:
var myList = new List<KeyValuePair<int, string>>();
myList.Add(new KeyValuePair<int, string>(1, "One");
foreach (var item in myList)
{
int i = item.Key;
string s = item.Value;
}
或者如果您是.NET Framework 4,则可以使用:
var myList = new List<Tuple<int, string>>();
myList.Add(Tuple.Create(1, "One"));
foreach (var item in myList)
{
int i = item.Item1;
string s = item.Item2;
}
如果字符串或整数对于集合是唯一的,则可以使用:
Dictionary<int, string> or Dictionary<string, int>
答案 2 :(得分:2)
您可以让列表包含您喜欢的任何对象。为什么不创建自定义对象
public class CustomObject
{
public string StringValue { get; set; }
public int IntValue { get; set; }
public CustomObject()
{
}
public CustomObject(string stringValue, int intValue)
{
StringValue = stringValue;
IntValue = intValue;
}
}
List<CustomObject> CustomObject = new List<CustomObject>();