我对 C# 完全陌生。我正在尝试遍历一个短数组,其中数组中的字符串元素放置在网站搜索的末尾。编码:
int n = 1;
string[] s = {"firstitem","seconditem","thirditem"}
int x = s.Max(); // note, from my research this should return the maximum value in the array, but this is the first error
x = x + 1
while (n < x)
{
System.Diagnostics.Process.Start("www.website.com/" + b[0]);
b[]++; // this also generates an error "identifier expected"
}
我的编码、逻辑或两者都是错误的。根据我读过的内容,我应该能够获得数组中的最大值(作为 int),然后添加到数组值中,同时WHILE
循环在网站末尾添加数组中的每个值(然后停)。请注意,在第一个错误中,我尝试以不同的方式对其进行编码,如下所示:
int x = Convert.ToInt32(s.Max);
但是,它会产生过载错误。如果我没看错,MAX
应该在一个序列中找到最大值。