Is there a more elegant way to add the collections collA and collB to my items collection without using the foreach statment below? (this works but I want to avoid the foreach)
Collection items = new Collection();
foreach (Contact cli in collA)
{
items.Add((c));
}
foreach (Contact c in collB)
{
items.Add((c));
}
...
Go to the complete details ...