Bill Blogs in C#

Bill Wagner discusses C#, LINQ, and other items of interest

Browse by Tags

All Tags » C# » Effective C# (RSS)
Sorry, but there are no more tags available to filter with.
Properties vs. Methods
Not so much a code as what you might call 'guidelines' Recently, one of the readers of Effective C# asked me some questions about Properties vs. Get and Set methods. It turned into a rather interesting conversation, so I'm posting it all here...

Posted by wwagner | with no comments

Filed under: ,

There are some things money can't buy
For everything else.... Oh, never mind Cost of PDC: $1500 Hotel (5 nights): $950 airfare: $375 Having the C# Product unit manager recommend your own book to you.... Priceless . <short backstory> At PDC, a number of RD's were invited to spend...

Posted by wwagner | with no comments

Filed under: ,

A C# Performance Question
A reader asks about a variation of loop variable hoisting Question on Item 11. Regarding your examples of loops, where would the following end up in efficiency? // Loop 4: ( for ( int index = 0, len = foo.Length; index < len; index++) … This...

Posted by wwagner | with no comments

Filed under: ,