/// <summary>
/// Creates a simple init class for our Application
/// </summary>
public enum Operator
{
Add
}
public static class App
// Use the [Ready] attribute to automaically
// run this method when the page is ready.
public static void Main()
var Operator = (Operator)0;
System.Console.WriteLine(Operator.Add == Operator);