I have two list.
List<string> a = new List<string>();
List<string> b = new List<string>();
a.Add("a");
a.Add("b");
a.Add("c");
b.Add("a");
b.Add("c");
I want Distinct value into a new list.
a.Concat(b).Distinct();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With