Primeiro código:
String curso, nome, sobrenome;
curso = "Carreira Desenvolvimento Backend .Net";
nome = "Tauane";
sobrenome = "Santos";
Console.WriteLine("O curso é " + curso);
Console.WriteLine("O nome é " + nome);
Console.WriteLine("E o sobrenome é " + sobrenome);
string instrutor1 = "Guilherme Lima";
String instrutor2 = "Daniel Portugal";
Console.Write("\n");
Console.WriteLine("O instrutor 1 se chama " + instrutor1 + " O instrutor 2 se chama " + instrutor2);
Segundo código após ajuda do fórum:
string curso = "Carreira Desenvolvimento Backend .Net";
string nome = "Tauane";
string sobrenome = "Santos";
Console.WriteLine($"O curso que a {nome} {sobrenome} está fazendo é de {curso}");
string instrutor1 = "Guilherme Lima";
String instrutor2 = "Daniel Portugal";
Console.Write("\n");
Console.WriteLine($"O instrutor 1 se chama {instrutor1} e o instrutor 2 se chama {instrutor2}");