다음을 통해 공유


using(C# 참조)

using 키워드의 주요 용도는 두 가지입니다.

  • 이 문using 개체가 삭제되는 끝의 범위를 정의합니다.
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;

참고 항목