try{int i=0;using (StreamReader sr = new StreamReader("TestFile.txt"))}{String line;while ((line = sr.ReadLine()) != null)。
{this.ListBox1.Items.Add("line "); //增加读出的内容listboxi++;}this.TextBox1.Text=i.ToString(); 显示行数}
catch。
扩展资料:
设计目标:
C#旨在设计成为一种“简单、现代、通用”,以及面向对象的程序设计语言,此种语言的实现,应提供对于以下软件工程要素的支持:强类型检查、数组维度检查、未初始化的变量引用检测、自动垃圾收集(Garbage Collection,指一种自动内存释放技术)。
软件必须做到强大、持久,并具有较强的编程生产力。此种语言为在分布式环境中的开发提供适用的组件开发应用。
为使程序员容易迁移到这种语言,源代码的可移植性十分重要,尤其是对于那些已熟悉C和C++的程序员而言。对国际化的支持非常重要。C#适合为独立和嵌入式的系统编写程序,从使用复杂操作系统的大型系统到特定应用的小型系统均适用。
参考资料来源:百度百科-c#
推荐于2017-12-15
{
using (StreamReader read = new StreamReader(FilePath, Encoding.Default))
{
return read.ReadToEnd().Split('\n').Length;
}
}
2013-08-12
{
//定义一个变量
int lineCount = 0;
//文件路径
string path = @"D:\SQL.txt";
try
{
using(StreamReader sr = new StreamReader(path))
{
//循环读取
while (sr.Peek() >= 0)
{
sr.ReadLine();
lineCount++;
}
}
this.label1.Text = "文件行数为:"+lineCount.ToString();
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
{
int i=0;
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
while ((line = sr.ReadLine()) != null)
{
this.ListBox1.Items.Add("line "); //增加读出的内容到listbox
i++;
}
this.TextBox1.Text=i.ToString(); 显示行数
}
}
catch
{
}
2013-08-12