Z
zlf
Hi,
This there any existing alorgithm in .NET that can extract the common
element in two string arrays to another string array;
usage:
string[] a = { "1","2","3" };
string[] b = { "1" };
string[] c = extractCommonElement ( a , b );
Result:
c = { "1" }
Thx
zlf
This there any existing alorgithm in .NET that can extract the common
element in two string arrays to another string array;
usage:
string[] a = { "1","2","3" };
string[] b = { "1" };
string[] c = extractCommonElement ( a , b );
Result:
c = { "1" }
Thx
zlf