我像这样在 IEnumerable 中存储 XML 值
public static IEnumerable bindstate()
{
var states = from b in getdata().Descendants("state").SelectMany(state => state.Elements("text"))
orderby (string) b
select (string) b;
return states;
}
除了 IEnumerable 之外,还有其他存储值的方法吗?