运算符 '!=' 不能应用于类型为 'string[]' 和 'string' 的操作数(是的,我知道之前有人问过类似的问题,我看过一个但使用的上下文/元素的类型不同,所以我'感谢我对我的案子的帮助 :) )
我有一个文件,我想在文件中点击以“0”开头的行时立即停止阅读。我的 while 循环遇到了不等式运算符的问题。
private void button1_Click(object sender, EventArgs e)
{
// Reading/Inputing column values
OpenFileDialog ofd = new OpenFileDialog();
if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
string[] lines = File.ReadAllLines(ofd.FileName).Skip(8).ToArray();
textBox1.Lines = lines;
while (lines != "0") // PROBLEM Happens Here
{
int[] pos = new int[3] { 0, 6, 18 }; //setlen&pos to read specific colmn vals
int[] len = new int[3] { 6, 12, 28 }; // only doing 3 columns right now
foreach (string line in textBox1.Lines)
{
for (int j = 0; j < 3; j++) // 3 columns
{
val[j] = line.Substring(pos[j], len[j]).Trim(); // each column value in row add to array
list.Add(val[j]); // column values stored in list
}
}
}
}