I have two property for readonlucollection
and IList
and created another property of List<string>
OptionList
is readonlycollection<string>
and ForList
is IList<string>
But I don't get full list in combine list it skipped some elements from optionlist
.
How do i get full list?
public List<string> CombineList {
get {
return OptionList.Union(ForList).ToList();
}
}