Browse by Tags
All Tags »
C# (RSS)
Sorry, but there are no more tags available to filter with.
A free book from Petzold. What the C or C++ Programmer Needs to Know About C# and the .NET Framework Available in XPS and PDF. http://www.charlespetzold.com/dotnet/index.html
Read More...
I read Anonymous Methods support in Whidbey (CLR) last week and decided to play with it. This looks a lot like how Javascript (in IE) handles event - < body onload ="msgbox('hello')" ..> In general Anonymous Methods allows code block in place of
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...