A compilation of the most kicked “top-10″ compilations from dotnetkicks.com
Archive for June, 2008
The 20 most kicked “top-10 stories” for Developers
Posted in Just Drops, tagged top10, top20 on June 27, 2008 | 5 Comments »
Behind the scenes of the C# yield keyword
Posted in dotnet, tagged c#, compiler, compilergenerated, yield, yield statement on June 9, 2008 | 12 Comments »
After reading the great article about the code-saving yield keyword “Give way to the yield keyword” by Shay Friedman I thought it could be interesting to know how the yield keyword works behind the scenes.
…it doesn’t really end the method’s execution. yield return pauses the method execution and the next time you call it (for [...]
ReSharper Code Documentation Completion
Posted in Just Drops, tagged Code Documentation, JetBrains, R#, Resharper on June 9, 2008 | Leave a Comment »
I would like R# to detect references to members, classes, parameters, generic parameters in the code documentation and either offer completion or quickfixes just to generate the necessary markup.
Just by typing "The parameter bar of type IBar….. " inside a code documentation tag R# could quickly fix it to be "The parameter <paramref name="bar"/> [...]