我有一個包含48行整數的CSV文件。我使用visual c#的openfiledialog功能來允許用戶選擇這個文件。然後我想讓程序將該文件截斷爲24行。是否有一個截斷函數可以用來輕鬆地完成這項工作?如果不是,我該怎麼做呢?下面是我迄今爲止...C#截斷CSV文件#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace sts_converter
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void select_Click(object sender, EventArgs e)
{
int size = -1;
DialogResult result = openFileDialog1.ShowDialog(); // Show the dialog.
if (result == DialogResult.OK) // Test result.
{
string file = openFileDialog1.FileName;
try
{
string text = File.ReadAllText(file);
size = text.Length;
}
catch (IOException)
{
}
}
Console.WriteLine(size); // <-- Shows file size in debugging mode.
Console.WriteLine(result); // <-- For debugging use only.
}
}
}
+1好問題,因爲我發現/獲悉,爲Linq的`Take`方法的使用。 – 2010-12-02 18:27:06