Category: General
Pages: << 1 2 3 4 5 6 7 8 9 10 11 ... 85 >>
12/03/10
Sharing Solutions between VS 2008 and VS 2010
I have a solution with several projects that I currently work on in VS 2008. I would like to use VS 2010 for it instead, to benefit from new debugger features etc... but it should remain on the .NET 3.5 platform, and I would also like to keep things com… more »
11/03/10
Gallio.Utility.exe considered evil
I [just blogged](http://www.sturmnet.org/blog/2010/03/11/gallio-mbunit-very-slow) about this problem I was having with Gallio/MbUnit. I don't regard the issue as fixed, but I've certainly worked around it.
I found that the delay happened when the tool… more »
Gallio/MbUnit very slow?
I just started playing with MbUnit, or at least that's what I had in mind -- found out then that it comes in that Gallio package these days, with all sorts of stuff on board that doesn't all have a clear purpose. Clear to me, that is. Well, I think at t… more »
10/03/10
Creating a Lazy Sequence of Directory Descendants in F#
It seems to turn into a shoot-out: listing directories is suddenly en-vogue! :-)
So, [Craig Andera posted this code in written in Clojure](http://www.pluralsight-training.net/community/blogs/craig/archive/2010/03/09/creating-a-lazy-sequence-of-director… more »
09/03/10
The yield statement cannot be used inside an anonymous method or lambda expression
I thought I was being pretty cool with this code:
IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator( ) {
Action yielder = null;
yielder = t => {
yielder(t.Left);
if (!t.IsEmpty)
yield return t.Va… more »


