using System;
public class Program
{
public static void Main(){
string name = "rakesh";
Gender genderVariable= Gender.Male; // this is string variable .
//Gender is method and Gendervariable is variable = Gender is Method. and Male is enum Vallue.
Console.WriteLine("My name is {0} & I'm {1}",name, genderVariable);
}
enum Gender {Male,Female,Gay, Lesbian}; // Enum should be in {} and its collection of data.
/**
Enum is used for limitation value. like. name of the week. types of gender .etc.
*/