Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. public class PastaWorld
  2. {
  3.     public void makeBolognese(Func makeThePasta, Func makeTheSauce)
  4.     {
  5.         Pasta pasta = makeThePasta()
  6.         Sauce sauce = makeTheSauce()
  7.         bolognese = new Bolognese(sauce, pasta);
  8.         return bolognese;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement