Sdílet prostřednictvím


using (referenční dokumentace jazyka C#)

Klíčové using slovo má dvě hlavní použití:

  • Příkaz using definuje obor na konci, na kterém je objekt uvolněn:
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);
}
  • Direktiva using vytvoří alias pro obor názvů nebo typy importu definované v jiných oborech názvů:
using System;
using System.IO;

Viz také