show/hide this revision's text 3 added 148 characters in body
string language = "Python";
int numquotes = 2;
string output = language + " has "+ numquotes + " language types.";

Edit: What I should have said was, "No, I don't believe what you want to do is supported by C#. This is as close as you are going to get."

show/hide this revision's text 2 Formatted code
string language = "Python";
int numquotes = 2;
string output = language + " has "+ numquotes + " language types.";
show/hide this revision's text 1

string language = "Python"; int numquotes = 2; string output = language + " has "+ numquotes + " language types.";