Di 'che ho la seguente classe:
public class ConfigItemType
{
public string Name { get; set; }
public double SomeOtherThing { get; set; }
}
e poi faccio un elenco delle seguenti classi ( List<ConfigItemType> MyList
)
Ora ho un metodo con la seguente firma:
void AggregateValues(string someUnrelatedValue, params string[] listGoesHere)
Come posso adattare MyList
dentro al listGoesHere
utilizzando il valore in ConfigItemType.Name
quanto l'array params stringa?
Sono abbastanza sicuro che Linq possa farlo .... ma MyList
non ha un select
metodo (che è quello che avrei usato).