Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
added 11 characters in body
Source Link

You need to use Enumerable.Union:

var result= properties.Union(highToLow) 

If your list is a list of objects then you should implement an equality comparer that can be used in the Union method. Enumerable.Union

You need to use Enumerable.Union:

properties.Union(highToLow) 

If your list is a list of objects then you should implement an equality comparer that can be used in the Union method. Enumerable.Union

You need to use Enumerable.Union:

var result= properties.Union(highToLow) 

If your list is a list of objects then you should implement an equality comparer that can be used in the Union method. Enumerable.Union

Source Link

You need to use Enumerable.Union:

properties.Union(highToLow) 

If your list is a list of objects then you should implement an equality comparer that can be used in the Union method. Enumerable.Union