我正在尝试从列表中的循环中存储值。我的代码是:
int count = 100;
for(int i=0;i<=count;i++)
{
my code to get the text:
m.gettextfromelement("xpath");
}
需要代码将值存储在列表中
答案 0 :(得分:0)
List<string> list = new List<string>();
int count = 100;
for(int i=0;i<=count;i++)
{
list.Add("StringValue");
}
答案 1 :(得分:0)
这是一种方法......
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);
}
CDN中提供的所有数据结构都可以在MSDN网站上找到。列表页面为this,仅供参考。 dotnetpearls是我经常访问的另一个C#网站。
答案 2 :(得分:0)
var list = new List<string>();
int count = 100;
for(int i=0;i<=count;i++)
{
list.Add(m.gettextfromelement("xpath"));
}