Manejo de strings https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/interpolated tambien se puede interpolar el texto con $"" class Program { static void Main(string[] args) { Console.WriteLine("Hello Platzi!"); int height = 170; int age = 22; string name = "Abdel Mejia"; string information = $"The requested info is:\nUser name: {name} \nUser age: {age} \nUser height: {height}"; Console.WriteLine(information); } }