次の方法で共有


using (C# リファレンス)

using キーワードは、主に次の 2 つの場合に使用します。

string filePath = "example.txt";
string textToWrite = "Hello, this is a test message!";

// Use the using statement to ensure the StreamWriter is properly disposed of
using (StreamWriter writer = new StreamWriter(filePath))
{
    writer.WriteLine(textToWrite);
}
  • using ディレクティブは、名前空間のエイリアスを作成したり、他の名前空間で定義されている型をインポートしたりします。
using System;
using System.IO;

関連項目