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;
참고 항목
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET