I don't think I've ever seen a more vapid blog than the Marc & Angel site.
Like this: var thing = from x in stuff let derp = x.herp select { x.name } Equals this: var thing = stuff.Select( x => { var derp = x.herp; return new { x.name }; } ); edit: formatting. I think each have their…
I don't think I've ever seen a more vapid blog than the Marc & Angel site.
Like this: var thing = from x in stuff let derp = x.herp select { x.name } Equals this: var thing = stuff.Select( x => { var derp = x.herp; return new { x.name }; } ); edit: formatting. I think each have their…