IEnumerable<String> existedThings =
from mdinfo in mdInfoTotal select mdinfo.ItemNo;
IEnumerable<String> thingsToSave =
from item in lbXReadSuccess.Items.Cast<ListItem>() select item.Value;
Aquí hay dos IEnumerable
.comprobar existencia entre dos IEnumerable
Quiero comprobar si existe value in existedThings
en thingsToSave
.
O.K. Puedo hacer eso con 3 líneas de código.
bool hasItemNo;
foreach(string itemNo in existedThings)
hasItemNo= thingsToSave.Contains(itemNo);
Pero, parece sucio.
Solo quiero saber si hay una mejor solución.
¡Perdón por mi pobre inglés! –
No se preocupe, he visto cosas peores de los supuestos hablantes nativos de inglés. ¡Lo estás haciendo bien! –