Tuesday, March 6, 2012

Adding double quotes("") in string and displaying like "Ajay""

simplest way to do this is:

string test ="You are very good \"person\" and want to meet you"

console.write(test );

You will get output like:

You are very good "person" and want to meet you

No comments:

Post a Comment