| Author: Aru 05 Sep 2008 | Member Level: Silver | Rating: Points: 1 |
string concatination simply u use + operator n do..
Emaple string mystring="Re:"; string Rplytitle=mystring+"what is cls??";
Thats all.
Regards Aru
|
| Author: Geetha 05 Sep 2008 | Member Level: Gold | Rating: Points: 1 |
HI
'+' is the string concatenation operator in .Net. string Rplytitle="Re:"+"what is cls??";
Regards, Geetha.
|
| Author: Kundan Kumar Sinha 05 Sep 2008 | Member Level: Gold | Rating: Points: 1 |
Hi,
First of all the following line will not work, as you need to keep the string value in double qutation.
string Rplytitle=what is cls??
string Rplytitle="what is cls??"
Just concanate the value which you you want ot add, like
string Rplytitle="Re:" + "what is cls??"
Regards, Kundan
|