fork(6) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public enum DefaultColor
  6. {
  7. Red = 0,
  8. Green = 1,
  9. Blue = 2,
  10. DarkBlue = 3
  11. }
  12. public enum MyColor
  13. {
  14. Red = 0,
  15. Green = 1,
  16. Blue = 2
  17. }
  18. public static void Main()
  19. {
  20. Console.WriteLine("Type casting int to mycolor :"+(MyColor)2);
  21. Console.WriteLine("Type casting DefaultColor to mycolor :"+(MyColor)DefaultColor.Red);
  22. Console.WriteLine("Type casting DefaultColor to mycolor :"+(MyColor)DefaultColor.DarkBlue);
  23. }
  24. }
Success #stdin #stdout 0.07s 24104KB
stdin
Standard input is empty
stdout
Type casting int to mycolor :Blue
Type casting DefaultColor to mycolor :Red
Type casting DefaultColor to mycolor :3