Il frammento di codice qui di seguito, illustra una tecnica di come aggiungere un nuovo elemento ad una lista di tipi generici.
Var Risultato = (from Dati in Elementi where Dati.Campo == Valore
select new
{
EtichettaA = Dati.Campo1,
EtichettaB = Dati.Campo2,
}).ToList();
var Elemento = new {EtichettaA="Valore", EtichettaB="Valore2",};
Risultato.Insert(0, Elemento);
Nessun commento:
Posta un commento