December 2009 Entries

Different mindsets....
I find it interesting how people think... what makes sense to them, et.c so... There's how I think... SomeObject.ListOfPeople.Fin... type => type.GetType().Equals(typeO... (person => { DoSomethingWithPerson(arg1, arg2);}); Pretty straight forward lambd Final all of x type in this collection and then do something to each one found. But coworker suggested this instead: (from person in SomeObject.ListOfPeople where person is Individual select person as Individual).ToList().ForEac...

Posted On Monday, December 21, 2009 9:52 AM | Feedback (0)

WCF and Brownfield development (soon to be an on going series...)
Mainly going to use this as notes and such of what were discovering by overlaying WCF on an existing application. So the set up... In existence is... 1) a working web application 2) a server back end to support the web app (that we get to use for our needs) 3) a relatively complex hierarchy of classes (e.g. a inherits from b inherits from c, some interfaces are also referenced by c, as well as complex types.) Our app will be a client/server application where the client will be in various offices...

Posted On Wednesday, December 09, 2009 12:39 PM | Feedback (0)