这并不复杂。但我想知道如何使它成为可能。
XmlAttribute ids3 = item.GetAttributeNode("href");
string hrefname = ids3.Value;
value1.Add(hrefname); //Value1 is List
StorageFile hreffile = await strfolder.GetFileAsync(value1[0]);
string html = await FileIO.ReadTextAsync(hreffile);
在value1
列表中,我有多个值。当我运行我的代码时,它通常会给出列表中的第一个值。我想按hreffile
顺序加载值。简单地说,如何在 List 中增加字符串值