Пример #1
0
 public static string[] GetIntersection(string[] Set1, string[] Set2)
 {
     return((string[])ArrayBuilder.ChangeArrayType(
                SetUtil <string> .GetIntersection(Set1, Set2),
                typeof(string)));
 }
Пример #2
0
 public static string[] GetDifference(string[] Set1, string[] Set2)
 {
     return((string[])ArrayBuilder.ChangeArrayType(
                SetUtil <string> .GetDifference(Set1, Set2),
                typeof(string)));
 }