using System.Collections.Generic;
public string MemberName;
List<string> lt = new List<string>(){"Agila","Siva",MemberName};
List<string> lt = new List<string>(){"trifu","raj",MemberName};
public void ForPlatinum()
List<string> lt = new List<string>(){"kamal","SK",MemberName};
public static void Main()
NewMember nw = new NewMember();
Console.Write("Enter the Group Name : ");
nw.GroupName = Console.ReadLine();
Console.Write("Enter the Member Name : ");
nw.MemberName = Console.ReadLine();
if(nw.GroupName.ToUpper() == "GOLD")
if(nw.GroupName.ToUpper() == "SILVER")
if(nw.GroupName.ToUpper() == "PLATINUM")