The System.Enum Type : System.Enum : Data Type C# Examples


C# Examples » Data Type » System.Enum »

 

The System.Enum Type









    
using  System;

enum  Color
{
        red,
        green,
        yellow
}

public  class  MainClass
{
        public  static  void  Main()
        {
                Color  c  =  Color.red;
                
                //  
                c  =  (Color)  Enum.Parse(typeof(Color),  "Red",  true);
                Console.WriteLine("string  value  is:  {0}",  c);
                
        }
}
    
   
  
   



Output

string value is: red


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» System.Enum