This is what I do, but it didn\'t work:
int money; Console.Writeline(\"Enter how much money you want\"; money=int.Parse(Console.ReadLine()); Console.Writeli
As of C# 6, this can be written as:
Console.Writeline($"The Money you have now are: {money}");
See: $ - string interpolation (C# reference)