namespace Name{ class Information{ private static string Name = "Zoltan"; private static string BirthDate= "03/02/2000"; private static string Hobby = "Reading"; public static void MyPresentation(){ string Profile = $"Name: {Name}\nBirth Date: {BirthDate}\nFavourite Hobby: {Hobby}"; Console.WriteLine(Profile); } } class MainClass{ static void MySong(){ string Song = @" Come join the murder Come fly with black We'll give you freedom From the human trap Come join the murder Soar on my wings You'll touch the hand of God And He'll make you king And He'll make you king"; Console.WriteLine(Song); } static void Main(){ Information.MyPresentation(); Console.WriteLine("\nVerse:"); MySong(); } } }