Eresor

Untitled

Apr 28th, 2020
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. delegate int OperacjaDwuargumentowaCalkowita(int a, int b);
  2.  
  3. int Test()
  4. {
  5.     OperacjaDwuargumentowaCalkowita dodawanie = Dodaj; //przypisanie metody nazywanej
  6.     OperacjaDwuargumentowaCalkowita mnozenie = (a,b)=>a*b; //przypisanie metody anonimowej
  7. }
  8.  
  9. int Dodaj(int x, int y)
  10. {
  11.     return x+y;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment