i want to know how to concatenate two string (Eg: str1 & str2)
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vijaya KadiyalaPosted Mar 21, 2009, 1:32 PM
Hi
There are various ways to do it.
http://www.peachpit.com/articles/article.aspx?p=31938&seqNum=5
Thanks -- Vijaya Kadiyala
http://dotnetvj.blogspot.com
Vimal KandasamyPosted Mar 13, 2009, 8:52 AM
its simple
String3=String1+String2;
thats it..
if you want append string with another then
String1=String1+String2;
got it?...