Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- delegate int OperacjaDwuargumentowaCalkowita(int a, int b);
- int Test()
- {
- OperacjaDwuargumentowaCalkowita dodawanie = Dodaj; //przypisanie metody nazywanej
- OperacjaDwuargumentowaCalkowita mnozenie = (a,b)=>a*b; //przypisanie metody anonimowej
- }
- int Dodaj(int x, int y)
- {
- return x+y;
- }
Advertisement
Add Comment
Please, Sign In to add comment