static void Main(string[] args)
        {
            NoviDelegat del = KlasaA.MetodA;

            PozoviDelegat(del, "Zagor");

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