我在SetValue()中设置了这个字典和元组,如下所示: -
var myDict = new Dictionary<string, Tuple<string, string>>();
private void SetValue()
{
var myTuple1= Tuple.Create("ABC", "123");
var myTuple2= Tuple.Create("DEF", "456");
myDict.Add("One", myTuple1)
myDict.Add("Two", myTuple2)
}
我试图在GetValue()中检索元组,如下所示: -
private void GetValue()
{
var myTuple = new Tuple<string, string>("",""); //Is this correct way to initialize tuple
if (myDict.TryGetValue(sdsId, out myTuple))
{
var x = myTuple.Item1;
var y = myTuple.Item2;
}
}
我的问题是,这是否是从字典中检索元组时初始化元组的正确方法?有更好的代码吗?
var myTuple = new Tuple<string, string>("","");
答案 0 :(得分:16)
您不需要为out参数创建实例。只需将局部变量声明为元组,但不指定值。
Tuple<string, string> myTyple;
答案 1 :(得分:13)
如果它是out参数,则在使用之前不需要初始化对象。你应该能够做到:
Tuple<string,string> myTuple;
if (myDict.TryGetValue(sdsId, out myTuple))
{
var x = myTuple.Item1;
var y = myTuple.Item2;
}