使用For循环在List中存储值
本文关键字:存储 List For 循环 使用 | 更新日期: 2023-09-27 18:17:04
我试图在列表中存储循环中的值。我的代码是:
int count = 100;
for(int i=0;i<=count;i++)
{
my code to get the text:
m.gettextfromelement("xpath");
}
需要在列表中存储值的代码
List<string> list = new List<string>();
int count = 100;
for(int i=0;i<=count;i++)
{
list.Add("StringValue");
}
这是一种方法…
var stringList = new List<string>(); // The list to store your text
var count = 100;
for (var iteration = 0; iteration <= count; iteration++)
{
//Code to get the text...
//Code to get the specific element - var specificElement = m.gettextfromelement("xpath");
//Finally, you "Add()" the specific element text to the list as...
stringList.Add(specificElement);
}
c#中所有可用的数据结构都可以在MSDN网站上找到。List的页面是这样的,供参考。dotnetpearls是另一个我经常访问的c#网站。
var list = new List<string>();
int count = 100;
for(int i=0;i<=count;i++)
{
list.Add(m.gettextfromelement("xpath"));
}