i now have experience working on both asp.net and php. asp scores on the integration and rich set of outofbox features and the power of C#. However after using php for some time, i came across a nifty feature in it which i desire to be there in asp.net
in php we can use the variables like this
$bar = "My name is $bar and my pet's name is $pet_name";
if we had to do the same thing in asp.net using c# i may have to write
string str - "my name is " + bar + " and my pet's name is " + pet_name
assuming bar and pet_name are already declared, can't there be a feature where i can denote variables like php does and don't have to be bothered by appending multiple strings?