Hi,
I have an application in C#. i want to display a value of a variable using quotes.
e.g.
int i = 1;
string str = " u have chosen" + i+;
label1.text = str; // to display the value of str
now i want to print this value in quotes like "1"
i want my output to be like this:
u have chosen "1" .
Can anybody help me?????
