Пример #1
0
        public static Recipe GetRandomRecipe()
        {
            Random rand   = new Random();
            var    recipe = Recipes.ElementAt(rand.Next(0, Recipes.Count)).Value;

            return(recipe);
        }