
Head First C# Code: Chapter 11
Secret Ingredients
AddSecretIngredient.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace __1_Secret_Ingredients
{
public delegate string GetSecretIngredient(int amount);
}