Click here to Skip to main content
15,892,059 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Parsing is fun Pin
honey the codewitch2-May-19 16:26
mvahoney the codewitch2-May-19 16:26 
GeneralRe: Parsing is fun Pin
Super Lloyd2-May-19 18:49
Super Lloyd2-May-19 18:49 
GeneralRe: Parsing is fun Pin
honey the codewitch2-May-19 18:59
mvahoney the codewitch2-May-19 18:59 
GeneralRe: Parsing is fun Pin
Sander Rossel2-May-19 21:54
professionalSander Rossel2-May-19 21:54 
GeneralRe: Parsing is fun Pin
honey the codewitch2-May-19 22:05
mvahoney the codewitch2-May-19 22:05 
GeneralRe: Parsing is fun Pin
Sander Rossel2-May-19 23:45
professionalSander Rossel2-May-19 23:45 
GeneralRe: Parsing is fun Pin
honey the codewitch3-May-19 1:59
mvahoney the codewitch3-May-19 1:59 
GeneralRe: Parsing is fun Pin
Sander Rossel5-May-19 20:43
professionalSander Rossel5-May-19 20:43 
LINQ has a small performance hit, if only because you do multiple method calls and it creates some extra objects.
The iterations aren't so bad if you do it right though.
For example, collection.Where(...).Select(...).ToList() only does one iteration, and not the three you'd expect.
The ToList() causes the iteration, which iterates through the SelectIterator, which uses the WhereIterator, so each item just goes through a chain of iterators just once Smile | :)

GeneralRe: Parsing is fun Pin
honey the codewitch6-May-19 0:49
mvahoney the codewitch6-May-19 0:49 
GeneralRe: Parsing is fun Pin
honey the codewitch6-May-19 0:50
mvahoney the codewitch6-May-19 0:50 
GeneralRe: Parsing is fun Pin
Sander Rossel6-May-19 0:57
professionalSander Rossel6-May-19 0:57 
GeneralRe: Parsing is fun Pin
honey the codewitch6-May-19 1:12
mvahoney the codewitch6-May-19 1:12 
GeneralRe: Parsing is fun Pin
Marc Clifton3-May-19 2:58
mvaMarc Clifton3-May-19 2:58 
GeneralRe: Parsing is fun Pin
honey the codewitch3-May-19 3:02
mvahoney the codewitch3-May-19 3:02 
GeneralInterested in music, learning and/or guitar? Pin
raddevus2-May-19 8:56
mvaraddevus2-May-19 8:56 
GeneralRe: Interested in music, learning and/or guitar? Pin
Rick York2-May-19 10:07
mveRick York2-May-19 10:07 
GeneralRe: Interested in music, learning and/or guitar? Pin
raddevus2-May-19 10:16
mvaraddevus2-May-19 10:16 
GeneralRe: Interested in music, learning and/or guitar? Pin
Rick York2-May-19 10:57
mveRick York2-May-19 10:57 
GeneralRe: Interested in music, learning and/or guitar? Pin
Paul Kemner6-May-19 4:12
Paul Kemner6-May-19 4:12 
GeneralRe: Interested in music, learning and/or guitar? Pin
Christian Graus2-May-19 12:41
protectorChristian Graus2-May-19 12:41 
GeneralRe: Interested in music, learning and/or guitar? Pin
Munchies_Matt3-May-19 0:42
Munchies_Matt3-May-19 0:42 
GeneralRe: Interested in music, learning and/or guitar? Pin
raddevus3-May-19 1:44
mvaraddevus3-May-19 1:44 
GeneralRe: Interested in music, learning and/or guitar? Pin
Munchies_Matt3-May-19 2:00
Munchies_Matt3-May-19 2:00 
GeneralRe: Interested in music, learning and/or guitar? Pin
raddevus3-May-19 2:16
mvaraddevus3-May-19 2:16 
QuestionMy friend's project is stuck between half AngularJS & Angular 4...and they're now completely stuck. Any advice? Pin
Goalie352-May-19 6:43
Goalie352-May-19 6:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.