using System;
using System.IO;
class MainClass
{
static void Main()
{
StreamReader sr=null;
try
{
// ファイルを開く
sr= new StreamReader
("Sample.txt",
System.Text.Encoding.Default);
// ファイルを文字列sampleに読み込む
string sample = sr.ReadToEnd();
// sampleを表示
Console.WriteLine(sample);
// ファイルを閉じる
sr.Close();
}
catch (Exception error)
{
// 例外の原因の詳細情報を表示
Console.WriteLine(error.Message);
}
finally
{
// ファイルを閉じる
if (sr != null)
{
sr.Close();
}
}
}
}
0 コメント:
コメントを投稿