Opposite of split

  • Thread starter Thread starter Guest
  • Start date Start date
Hi,

What about +
string targer = "str1" + "ste2";

Remember that string is an inmutable class, meaning that you will get a new
instance, no the same with something appened, if you just want to append
several substrings it''s better tu use StringBuilder

cheers,
 
Back
Top