Nata
Norint pasiekti šį puslapį, reikalingas leidimas. Galite pabandyti prisijungti arba pakeisti katalogus.
Norint pasiekti šį puslapį, reikalingas leidimas. Galite pabandyti pakeisti katalogus.
The using keyword has two major uses:
- The
usingstatement defines a scope at the end of which an object is disposed:
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);
}
- The
usingdirective creates an alias for a namespace or imports types defined in other namespaces:
using System;
using System.IO;
See also
Bendradarbiaukite su mumis "GitHub"
Šio turinio šaltinį galite rasti "GitHub", kur taip pat galite kurti ir peržiūrėti problemas bei ištraukimo užklausas. Daugiau informacijos rasite mūsų bendraautorių vadove.