[求助]怎样读文件
以前是用VB的,读文件时如用Input,可以直接把读入的赋值应用,不知道在C#中怎样实现啊?好象是用StreamReader什么的,但怎么才能赋值????
谢先!!!!!
以下是一个读取文本文件代码,你可以参考一下:
namespace holle
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
private const string FILE_NAME = "MyFile.txt";
public static void Main(String[] args)
{
if (!File.Exists(FILE_NAME))
{
Console.WriteLine("{0} does not exist!", FILE_NAME);
return;
}
StreamReader sr = File.OpenText(FILE_NAME);
String input;
while ((input=sr.ReadLine())!=null)
{
Console.WriteLine(input);
}
Console.WriteLine ("The end of the stream has been reached.");
sr.Close();
}
}
}