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,