October 2006 - Posts
I just added a new topic in the Functional Programming Tutorial , Procedural Analogs . This introduces the Switch extension method, which you would use in certain circumstances. It is somewhat analogous to the C# switch statement, except that this extension
Read More...
You can implement common procedural constructs in the Functional Programming (FP) style. For instance, the FP tutorial showed how to loop using a ForEach extension method. We can do something similar to implement something analogous to the C# switch statement.
Read More...
A couple of months ago, I wrote some code that used LINQ to XML to parse WordML files. It was interesting to do, and relatively easy. I posted it on this blog, and some other people here at MS used it for various purposes. Then it came to the attention
Read More...