Monday, August 29, 2005

Dynamic Code Execution

Both Eric Gunnerson and Joel Pobar have written about executing code dynamically:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp02172004.asp

http://msdn.microsoft.com/msdnmag/issues/05/07/Reflection/default.aspx

Wednesday, August 24, 2005

Investment Books

Over at Deadprogrammer's Cafe he mentions a few books about the stock market/wall street that are good reads:

"A Random Walk Down Wall Street"



"Liar's Poker"



"Ugly Americans"

Wednesday, August 17, 2005

Testing a post from Word

Testing a post from Word to Blogger:

abstract class  ProcessorWorker
     {
          protected string _url;
          protected static string _results;

          public ProcessorWorker()
          {
               
          }

          public virtual void Run()
          {
               Console.WriteLine(string.Format("Results: {0}", _results));
               Console.ReadLine();
          }
     }

Just a Test.

Wednesday, August 10, 2005

.NET XML Performance Tips

A link that offers some tips on using XML in .NET

http://msdn.microsoft.com/library/en-us/dnpag/html/scalenetchapt09.asp

Interview with Erich Gamma

Here he discusses design patterns and tips on becoming a better designer.

http://www.artima.com/lejava/articles/patterns_practice.html

This page is powered by Blogger. Isn't yours?