MarkinSac

MarkinSac


  • Name: [not set]
  • Favorite Languages: [not set]
  • Website: [not set]
  • Location: [not set]
  • About Me: [not set]

Recent Comments

  • C# Tutorial - Singleton Pattern
    12/05/2009 - 09:20

    Good introduction to the pattern. The line:

    Singleton1 single = Singleton1.getInstance();

    should read

    Singleton1 single = Singleton1.GetInstance();

    Mark

  • Working With The WPF Dispatcher
    12/05/2009 - 09:13

    Excellent tutorial - I appreciate the time you took to explain that.

    Just a couple of comments...

    A "using System.Windows.Threading" might have made the code a lot easier to read.

    Anonymous methods tidy up the code but perhaps make it a little less readable

    But perhaps that's just me - again, Thanks