fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public enum VendorType{
  6. Corporation = 'C',
  7. Estate = 'E',
  8. Individual = 'I',
  9. Partnership = 'P',
  10. FederalGovernment = 2,
  11. StateAgencyOrUniversity = 3,
  12. LocalGovernment = 4,
  13. OtherGovernment = 5
  14. }
  15.  
  16. public static void Main()
  17. {
  18. Console.WriteLine((int)VendorType.Corporation);
  19. }
  20. }
Success #stdin #stdout 0.04s 37024KB
stdin
Standard input is empty
stdout
67