我对如何从方法中重新调整元组有一个很好的建议:
现在我意识到我的代码不仅产生两个值,而且产生一个 IEnumerable< >。到目前为止,这是我的代码,其中结果包含一个 IEnumerable 我猜是一个包含注释和标题的匿名对象。我不太确定如何将数据放入元组中,也不确定如何将其从变量 myList 中取出。我可以对 myList 做一个 foreach 吗?
public static IEnumerable< Tuple<string, string> > GetType6()
{
var result =
from entry in feed.Descendants(a + "entry")
let notes = properties.Element(d + "Notes")
let title = properties.Element(d + "Title")
// Here I am not sure how to get the information into the Tuple
//
}
var myList = GetType6();