var result =
from a in listA
from b in listA
where a != b
select new C(a,b);
var newResultList = new List<C>();
foreach (C c in result)
{
if (c.Sometest()) { newResultList.Add(c); }
}
I'm looking for a way in a LINQ statement to create a new instance of a class C so I can then test by calling c.Sometest() which returns a Boolean, and that determines if the element gets filtered out or left in the collection.Network and collaborate with thousands of CTOs, CISOs, and IT Pros rooting for you and your success.
”The time we save is the biggest benefit of E-E to our team. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange.
Our community of experts have been thoroughly vetted for their expertise and industry experience.