public int numberOfMembers;
public string mainDancer;
public string mainRapper;
kg.mainDancer = "Karina";
kg.mainRapper = "Giselle";
kg.mainVocal = "Ningning";
Console.WriteLine(kg.groupName + " is a " + kg.numberOfMembers + " member group under SM Entertainment.");
Console.WriteLine(kg.mainDancer + " is the main dancer and leader.");
Console.WriteLine(kg.mainRapper + " is the main rapper.");
Console.WriteLine(kg.mainVocal + " is the main vocal.");
Console.WriteLine("And " + kg.Visual+ " is the visual of the group.");
public static void Main()
printerKg p = new printerKg();
importantDates AOTY = importantDates.AOTY;
importantDates Coachella = importantDates.Coachella;
importantDates Debut = importantDates.Debut;
Console.WriteLine("Here are some of the most important dates for this group:");
Console.WriteLine((int)Debut);
Console.WriteLine("On August 26, 2022, Aespa debuted as a 4 member group.");
Console.WriteLine((int)AOTY);
Console.WriteLine("In the first of January 2022, the group became the inaugural winner of the Artist of the Year award at the Golden Disc Awards.");
Console.WriteLine((int)Coachella);
Console.WriteLine("On April 19, 2022, it was announced that Aespa would be performing at Coachella on April 23, during the second week of the annual music festival.");