Welcome to Atalasoft Community Sign in | Help

Browse by Tags

All Tags » IL   (RSS)
As momentum builds for the F# release with Visual Studio 2010, so too does the number of people blogging about the language.  This week we have a spec update, clarified comparisons, decision trees, porting gotchas and in depth explorations of the Read More...
There has been a huge spike in the number of F# posts over this past couple of weeks.  For this post I have chosen those I think are most important for the experienced F# programmer to read.  This week we have Common mistakes, the inner workings Read More...
A few weeks off left me with renewed vigor. This week we have some very interesting posts on reflective and reactive programming, enhancing F# by adding additional operators, IL analysis via simulation and finally, observations on the productization of Read More...
Some interesting gems this week. Revit, Closures and MathTools won the day. However, I do hope you'll take a look at the IL post as well. Blog – Jeremy Tammik’s Use F# Directly in Revit In Jeremy’s post he discusses what is initially necessary to get Read More...
After my last post, A Safe and Asynchronous One to Many Stream Copy Through IL and Inheritance ”, I ordered a few books and spent some time playing with generating IL. Along the way I’ve developed a library which allows you to make a franken-clone of Read More...
Because .NET Streams have state, they are difficult to use in multithreaded environments. In this post I discuss ways to manage or work around problems arising from the statefulness of .NET Streams. I explain how this is possible both through traditional Read More...
After my last blog post, due to some of the responses, I decided to spend some time with Smalltalk. As a DotNET developer by trade, I wanted to see what kinds of options were available for use on the CLR. Unfortunately, out of the five different DotNET Read More...
One of the most often cited reasons to not use .NET is that it is initially compiled to an intermediary language (MSIL) and has to be recompiled every time you run it. In many high performance environments this wasted time is simply unacceptable. To combat Read More...