Lista kezeles

This commit is contained in:
2022-05-16 12:48:33 +02:00
parent b3be3524a4
commit ca895f31ba
87 changed files with 224 additions and 0 deletions

22
ListaKezeles/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ListaKezeles {
public class Program {
static void Main(string[] args) {
Varosok varosok = new Varosok();
//varosok.setDb();
varosok.setNevek();
varosok.getNevek();
varosok.getVan();
varosok.delNev();
varosok.getNevek();
varosok.delLast();
varosok.getNevek();
Console.ReadKey();
}
}
}