Home > Blogs
Browse by Tags
Home > Blogs
Lang.NET was just over an hour or so ago, and there are many funny and interesting quotes I compiled over the last few days. Here are all I can remember and find on twitter. Mads Torgersen on C# dynamic: “We owe it to IronPython and Ruby to make them
Read More...
Well, it seems this month I'm up for being interviewed. Here's the link to my interview .
Read More...
Rob Burke is teaching a WPF training course through Toronto-based consultancy ObjectSharp . The course is called “ Windows Presentation Foundation for Developers and Lead Designers ,” and, as the title suggests, it offers a hands-on experience designed
Read More...
What is Pex? Pex generates test inputs that cover all, or at least many of the corner cases in your .NET code. These test inputs are plugged into parameterized unit test that you write. The result is a small unit test suite, where each unit test calls
Read More...
Source Analysis, also known as StyleCop, analyzes C# source code to enforce a set of best practice style and consistency rules. Source Analysis for C# can be downloaded here: https://code.msdn.microsoft.com/Release/ProjectReleases.aspx?ProjectName=sourceanalysis
Read More...
Here's a very simple QuickSort algorithm from Wikipedia written in a very Functional way of C#. Notice that it looks very close to the pseudo-code algorithm shown in Wikipedia. The pivot used is just sequence.First(). You can replace the pivot by some
Read More...
I copied this blog post from Chris Dufour's blog . Chris copied it from Rob Windsor's blog . Rob copied it from Julie Lerman's blog . Julie copied it from Guy Barrette's blog . I'm sure someone will copy it from me and add their own little flair. If you
Read More...
From OSNews : Microsoft has released source code from the Singularity research project onto Codeplex under an academic, non-commercial license. "The Singularity Research Development Kit is based on the Microsoft Research Singularity project. It includes
Read More...
The presentation I did for the Toronto Code Camp , " Overview of ASP.NET 3.5 Extensions ", is up on my site. Download it here .
Read More...
The presentation I did for the Metro Toronto .NET User Group , " A Look into the Future of Creating Composite Applications ", is up on my site. Download it here .
Read More...
Reading Mads Torgersen old blog post on Recursive Lambda Expressions , I decided it was time for me to seriously play with his code and try out the fixed point generator to create recursive lambda expressions (together with the fact that I was sick and
Read More...
InfoQ has a very good article for those who need to override the equality operator. Quote from InfoQ : In this deep dive article on equal operator overloading Jonathan Allen clears the air on overriding the equality operator. In the article Jonathan provides
Read More...