I’ve two lists like
List<String> LISTONE=new List<String>()
and
List<String> LISTTWO=new List<String>()
and which contains
LISTONE "A"
"B"
"C"
LISTTWO "A"
"D"
"E"
and the required out put is
LISTTEMP "B"
"C"
"D"
"E"
is there any way to do this using LINQ
It can be done using Except() and Concat() LINQ methods: