A
Axel Dahmen
Hi,
I want to concatenate two string arrays. Is it possible to concatenate them
gracefully, i.e. without copying each element manually?
TIA,
Axel Dahmen
PS.: Here's an example of what I am about:
string[] lst1,lst2,ret;
lst1=Directory.GetFiles("C:\Temp\*.jpg");
lst2=Directory.GetFiles("C:\Temp\*.gif");
ret=lst1+lst2; // ????
I want to concatenate two string arrays. Is it possible to concatenate them
gracefully, i.e. without copying each element manually?
TIA,
Axel Dahmen
PS.: Here's an example of what I am about:
string[] lst1,lst2,ret;
lst1=Directory.GetFiles("C:\Temp\*.jpg");
lst2=Directory.GetFiles("C:\Temp\*.gif");
ret=lst1+lst2; // ????