Guest User

Untitled

a guest
Jun 13th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. delegate int StrMod(int a);
  2. static void main()
  3. {
  4. StrMod strmod = delegate{return 10;};
  5. Console.WriteLine(strmod(5));
  6. }
Add Comment
Please, Sign In to add comment