我需要读取文件的第一行,然后使用循环读取我想要读取的后续行。
例如:
Read in first line
Do stuff with the data
foreach ($line in $remainingLines)
{
more stuff
}
我有一个相当混乱的方法来实现这一点,但必须有更好的方法。
我需要读取文件的第一行,然后使用循环读取我想要读取的后续行。
例如:
Read in first line
Do stuff with the data
foreach ($line in $remainingLines)
{
more stuff
}
我有一个相当混乱的方法来实现这一点,但必须有更好的方法。