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
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