fork download
  1. using System;
  2.  
  3. namespace Articulo.Pregunta.R1520
  4. {
  5. public enum Autenticacion
  6. {
  7. FORMULARIO = 1,
  8. WINDOWS = 2,
  9. WEB = 3
  10. }
  11.  
  12. public class StringEnumeracion
  13. {
  14. public static void Main()
  15. {
  16. // Por medio de GetName(Type, object):
  17. Autenticacion autFormulario = Autenticacion.FORMULARIO;
  18. string strAutFormulario = Enum.GetName(typeof(Autenticacion), autFormulario);
  19. Console.WriteLine ("\nGetName(Type, object): {0}\n", strAutFormulario);
  20.  
  21. // Por medio de ToString():
  22. Console.WriteLine ("ToString(): {0}\n", autFormulario.ToString());
  23. }
  24. }
  25. }
Success #stdin #stdout 0.05s 24048KB
stdin
Standard input is empty
stdout
GetName(Type, object): FORMULARIO

ToString(): FORMULARIO