ObjectSharp Blogs

You are currently viewing

Justin Lee's Technology Blog


Languages, Languages, Languages!


Browse by Tags

Quotable Quotes from Lang.NET Symposium

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...

MVP Insider - Q & A with Justin Lee

Well, it seems this month I'm up for being interviewed. Here's the link to my interview . Read More...

WPF for Developers and Lead Designers Course

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...

Pex 0.5 Released

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...

Release of Microsoft Source Analysis for C#

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...

QuickSort in Functional C#

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...

DevTeach is coming to Toronto in just a few more weeks!

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...

Singularity Source Code Released to CodePlex

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...

Presentation: Overview of ASP.NET 3.5 Extensions

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...

Presentation: Acropolis and Composite Applications

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...

Recursive Lambda with Fixed Point Generator

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...

A Detailed look at Overriding the Equality Operator in .Net

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...