Concatenates two strings to a new string in unmanaged memory
auto str1 = "hello"; auto str2 = " world"; auto cat = catStr(str1, str2); assert(cat == "hello world"); Delete(cat);
See Implementation
Concatenates two strings to a new string in unmanaged memory