I am having two lists
List<int> a = {1,2,3};
List<int> b = {3,4};
I need to compare them in such a way that the output should be
1 false
2 false
4 true
The output is by using the following logic
1,2
are in a
but not in b
so they are set to false
whereas
3
is in both the lists so its not in the output and
- '4' is in
b
but not in a
so they are set to true
the return type is a List<modelClass>
that has int id, bool isTrue
properties
Can you help me?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…