c# write variable in string

C#
int age = 22;

Console.WriteLine($"Age: {age}");private string text;

Console.WriteLine(text);
Source

Also in C#: