static void Main(string[] args) { Slozka slozka = new Slozka(); StahovaniDat sd = new StahovaniDat(); slozka.VytvorSlozku(); slozka.VytvorSoubor(); sd.Smycka(); Console.ReadKey(); }
public void ZapisKurz(string zapis) { StahovaniDat stah = new StahovaniDat(); using (StreamWriter sw = new StreamWriter(@"soubor.txt", true)) { sw.WriteLine(zapis); sw.Flush(); } if (stah.zapsano) { Console.WriteLine("Kurz byl úspěšně zapsán."); } }