Sign in
digitalnetbizz's WebLog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
C#
Departure
DHTML
DirectX
MIL
NNTP
Office
Others
TCP/IP
Virtual Earth
Vista
WCF
Win32
WPF
WPF 3d
XAML
XQuery
Browse by Tags
MSDN Blogs
>
digitalnetbizz's WebLog
>
All Tags
>
c#
Tagged Content List
Blog Post:
.NET Book Zero
digitalnetbizz
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
on
28 Jan 2007
Blog Post:
Anonymous Methods ...
digitalnetbizz
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 delegate. For example, public class TestApp...
on
7 Feb 2004
Blog Post:
Create Assembly in-memory and run it...
digitalnetbizz
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 = System.Reflection; using CSharp = Microsoft.CSharp;...
on
31 Jan 2004
Blog Post:
System.Collections.Generics
digitalnetbizz
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); myList.Add(201); myList.Add(303);...
on
30 Jan 2004
Page 1 of 1 (4 items)