Exemplo n.º 1
0
        static void Main(string[] args)
        {
            NoviDelegat del = KlasaA.MetodA;

            PozoviDelegat(del, "Zagor");

            del = KlasaB.MetodB;
            PozoviDelegat(del, "Veliki Blek");
        }
Exemplo n.º 2
0
 // u ovom metodu delegat je parametar
 public static void PozoviDelegat(NoviDelegat del, string str)
 {
     del(str);
 }