fork download
  1. using System.IO;
  2. using System;
  3.  
  4.  
  5. [System.Flags]
  6. enum Things {
  7. Cat = 1, Dog = 2, Mouse = 4, House = 8, Ball = 16, Music = 32
  8. }
  9.  
  10.  
  11. class Program
  12. {
  13.  
  14. static void Main()
  15. {
  16.  
  17. var value = Things.Cat | Things.Dog;
  18.  
  19. Console.WriteLine(value.ToString());
  20. }
  21. }
  22.  
Success #stdin #stdout 0.04s 33936KB
stdin
Standard input is empty
stdout
Cat, Dog