public static void Main()
DoFirstSomething(MyValues.Value1);
DoFirstSomething(MyValues.Value2);
DoFirstSomething(MyValues.Value3);
DoSecondSomething(OtherValues.Something1);
DoSecondSomething(OtherValues.Something2);
public static void DoFirstSomething(MyValues mode)
public static void DoSecondSomething(OtherValues mode)
if(mode == OtherValues.Something1)
Console.WriteLine("AHAHAHAHAHAHAHA");
else if(mode == OtherValues.Something2)
Console.WriteLine("NOOOOOOOOOOOOO");