我们可以在C#.NET中创建自己的List<string, string, string>
吗?我需要在列表中创建一个包含3个不同字符串的列表。
答案 0 :(得分:28)
您当然可以使用三个泛型类型参数创建自己的名为List
的类。我会强烈阻止你这样做。任何使用你代码的人都会感到困惑。
相反,要么使用List<Tuple<string, string, string>>
(如果你还在使用.NET 4),或者(最好)创建自己的类来以有意义的方式封装这三个字符串,然后使用List<YourNewClass>
。
创建自己的课程将使您在编写和阅读代码时更加清晰 - 通过为所涉及的三个不同的字符串命名,每个人都会知道他们的意思。您还可以根据需要为课程提供更多行为。
答案 1 :(得分:11)
您可以使用Tuple来实现这一目标。
例如:
var list = new List<Tuple<string,string,string>>();
迭代你可能想要的值做一个简单的事情:
list.ForEach(x=>{
//x is a Tuple
});
或找到某些特定的问题,可能希望执行以下操作:
var list = new List<Tuple<string,string,string>>{
new Tuple<string,string,string>("Hello", "Holla", "Ciao"),
new Tuple<string,string,string>("Buy", "--", "Ciao")
};
list.Where(x=>x.Item2 == "--");
这将返回最后一个元组。
答案 2 :(得分:3)
您可以使用tuples列表。像这样:
List<Tuple<string, string, string>>
答案 3 :(得分:3)
也许是这样的:
var ls= new List<Tuple<string,string,string>>();
答案 4 :(得分:3)
我推荐这个解决方案
public class MyCustomClass
{
public string MyString1 { get; set; }
public string MyString2 { get; set; }
public string MyString3 { get; set; }
}
class MyApp
{
public MyApp()
{
List<MyCustomClass> customList = new List<MyCustomClass>();
customList.Add(new MyCustomClass
{
MyString1 = "Hello",
MyString2 = "Every",
MyString3 = "Body",
});
}
}
答案 5 :(得分:2)
例如:
var list = new List<Tuple<string, string, string>>();
var tuple = Tuple.Create("a", "b", "c");
list.Add(tuple);
有关详细信息,请查看MSDN。
答案 6 :(得分:1)
制作List<Tuple<string, string, string>>
怎么样?
更好的想法可能是,如果每个字符串都有特定含义,将它们全部放入一个类中,然后创建一个List。
答案 7 :(得分:0)
不,遗憾的是这不起作用。您可以做的最好的事情是创建一个列表列表,或者使用IDictionary接口的某种形式的实现。
虽然如此,如果你有三个以这种方式组合在一起的数据项,那么创建一个包含它们的类可能是值得的。
然后,您将有机会在应用程序周围传递List,并为每个数据项分配有意义的名称。永远不要低估六个月后的可读性。
答案 8 :(得分:0)
您可以定义List并实现所需的接口(例如IList)。代码吹。
public class List<T1, T2, T3> : IList
{
#region IList Members
public int Add(object value)
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(object value)
{
throw new NotImplementedException();
}
public int IndexOf(object value)
{
throw new NotImplementedException();
}
public void Insert(int index, object value)
{
throw new NotImplementedException();
}
public bool IsFixedSize
{
get { throw new NotImplementedException(); }
}
public bool IsReadOnly
{
get { throw new NotImplementedException(); }
}
public void Remove(object value)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
throw new NotImplementedException();
}
public object this[int index]
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
#endregion
#region ICollection Members
public void CopyTo(Array array, int index)
{
throw new NotImplementedException();
}
public int Count
{
get { throw new NotImplementedException(); }
}
public bool IsSynchronized
{
get { throw new NotImplementedException(); }
}
public object SyncRoot
{
get { throw new NotImplementedException(); }
}
#endregion
#region IEnumerable Members
public IEnumerator GetEnumerator()
{
throw new NotImplementedException();
}
#endregion
}
但是,建议使用List<Tuple<string,string,string>>
。
答案 9 :(得分:0)
public class Listt< T, T1, T2>
{
public Listt()
{
}
public void Add(T item, T1 item1, T2 item3)
{
}
}
public partial class MyApp : Window
{
public MyApp()
{
InitializeComponent();
Listt<string, string, string> customList = new Listt<string, string, string>();
customList.Add("we","are","here");
}
}
答案 10 :(得分:0)
有人试过dynamic
?
var list = new List<dynamic>();
list.Add(new { Name = "SampleN", Address = "SampleA", Email = "SampleE" });
var name = list[0].Name;