我正在尝试将一个类的循环的值用于另一个类我该怎么做。请帮我..
while (!sStreamReader.EndOfStream)
{
string sLine = sStreamReader.ReadLine();
// make sure we have something to work with
if (String.IsNullOrEmpty(sLine)) continue;
string[] cols = sLine.Split(',');
// make sure we have the minimum number of columns to process
if (cols.Length > 4)
{
double a = Convert.ToDouble(cols[1]);
Console.Write(a);
int b = Convert.ToInt32(cols[3]);
Console.WriteLine(b);
Console.WriteLine();
}
}
我正在尝试将 a 和 b 的值用于另一个类。这个循环是另一个类。