Head First C#

Head First C# Code: Chapter 11
Secret Ingredients
Suzanne.cs

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace __1_Secret_Ingredients
{
    public class Suzanne
    {
        public GetSecretIngredient MySecretIngredientMethod {
            get
            {
                return new GetSecretIngredient(SuzannesSecretIngredient);
            }
        }

        private string SuzannesSecretIngredient(int amount)
        {
            return amount.ToString() + " ounces of cloves";
        }
    }
}