January 2004 - Posts
Excellent Managed DirectX tutorial.
Read More...
This has to do with CodeDom and Microsoft.CSharp namespace. The following code will let you compile and run code in memory, IMHO - perfect for scripting engine needs: using System; using Specialized = System.Collections.Specialized; using Reflection =
Read More...
I have been starting to use CLR Generics. Absolutely useful for day to day software design and implementation. using Generics = System.Collections.Generics; ... private Generics.IList<int> myList = new Generics.List<int>(capacity); myList.Add(100);
Read More...
Excellent Avalon/WinFX information (slides, webcasts + source code) from PDC2003 available online right now at MSDN .
Read More...