Advertisement
Fhernd

StringEnumeracion.cs

Mar 26th, 2016
3,743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.69 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement