using System;
using System.IO;
class MainClass
{
static void Main()
{
// 例外処理try-catch
try
{
string sample = "Sample.txt";
// StreamWriterをインスタンス化
using (StreamWriter sw
= new StreamWriter
(sample,false,
System.Text.Encoding.Default))
{
// ファイルに書き込む
sw.Write("内容");
}
// StreamReaderをインスタンス化
using (StreamReader sr
= new StreamReader
(sample, System.Text.Encoding.Default))
{
// textにsampleの内容をすべて読み込む
string text = sr.ReadToEnd();
// sampleの内容を表示
Console.WriteLine(text);
}
}
catch (Exception error)
{
// 例外の原因の詳細情報を表示
Console.WriteLine(error.Message);
}
}
}
0 コメント:
コメントを投稿