Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Fegyver f = new Fegyver();

            Elsut(f);

            Gepfegyver g = new Gepfegyver();

            Elsut(g);


            PartialClass pc = new PartialClass();

            pc.Kiir();
            pc.Kiir2();



            Console.ReadKey();
        }
Ejemplo n.º 2
0
 static void Elsut(Fegyver f)
 {
     Console.WriteLine($"Sebzés: {f.Sebzes()}");
 }