C#读取.csv文件的行数
时间: 2024-01-05 14:03:58 浏览: 316
C#读取CSV文件
4星 · 用户满意度95%
在C#中,你可以使用StreamReader类来读取.csv文件的行数。下面是一个示例代码:
```csharp
using System;
using System.IO;
class Program
{
static void Main()
{
string filePath = "path/to/your/file.csv";
int lineCount = 0;
using (StreamReader reader = new StreamReader(filePath))
{
while (reader.ReadLine() != null)
{
lineCount++;
}
}
Console.WriteLine("The number of lines in the .csv file is: " + lineCount);
}
}
```
这段代码首先创建了一个StreamReader对象来读取.csv文件。然后,使用一个while循环来逐行读取文件内容,每读取一行,行数就加1。最后,输出行数。
阅读全文