I have a CustomObject, say defined with following attibutes:
string Name {get;set;}
string EmailAddress{get;set;}
Also, I have a separate List<string> that contains all 'names'
I want to populate List<CustomObject> with each CustomObject having its name assigned from List<string> names.
How can I achive this using Linq?