Exemple #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            AdresInfoReader r = new AdresInfoReader();

            r.readData();
            r.printData("Berlare");
        }
Exemple #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("..:::Adres Info:::..");
            string          path = @"D:\OneDrive\HoGent\Programmeren gevorderd\Opdrachten\VS\AdresInfo\adresInfo.txt";
            AdresInfoReader r    = new AdresInfoReader(path);

            r.readData();
            r.printData("Berlare");
            Console.ReadLine();
        }