I'm doing a desktop application and I want to show the value of a variable on the screen inside the quotes this is my code
static void Main(string[] args)
{
int casa = 16;
Console.WriteLine("variable {{casa}}");
Console.ReadKey();
}
Print casa
no 16
, it can be done adding and the name of the variable but I want it inside the quotes could it be done ???