C# | Cast an int to enum

using System; public class Program { public static void Main() { var e0 = (Food)Enum.ToObject(typeof(Food), 0); Console.WriteLine(e0); // or simply var e2 = (Food)2; Console.WriteLine(e2); } public enum Food { Pizza, Pasta, Tofu } }

HTML Minify v 1.3.2 released!

We added three new options to the web tool and API: – Remove quotes around attributes when possible – Strip HTML comments – Remove all attributes with whitespace-only values Try it now! dotmaui.com/htmlminify api.dotmaui.com/htmlmin