Linq to Object -Object update

Posted by nettguy on Stack Overflow See other posts from Stack Overflow or by nettguy
Published on 2010-04-01T14:38:34Z Indexed on 2010/04/01 14:43 UTC
Read the original article Hit count: 275

Filed under:
|

In LINQ to Object context ,can i update an object in memory.

I mean i can create new type like

var query =from e in empList
           select new {id=e.id,salary=e.salary * (10/100) };

can i update an object?

© Stack Overflow or respective owner

Related posts about LINQ

Related posts about c#