這並不複雜。但我想知道如何讓它成爲可能。在列表中增加字符串值
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
值。 簡單地說,使用如何通過值1列表的所有值的環和環不分值
// assuming your Value1 is List<string>
foreach(string value in Value1)
{
StorageFile hreffile = await strfolder.GetFileAsync(value);
string html = await FileIO.ReadTextAsync(hreffile);
// rest of your code needs to go in here
}
我不明白你爲什麼需要在這裏列表? –
'value1 [0]'總是返回相同索引處的值。你想達到什麼目的?使用'for'循環遍歷列表?在列表中使用「foreach」? –
@ViacheslavSmityukh 我有很多值來存儲,然後更好地去與數組。 – Kumar