joelihn

joelihn


  • Name: Zhou Lijun
  • Favorite Languages: C#, C++
  • Website: [not set]
  • Location: BeiJing,China
  • About Me: [not set]

Recent Comments

  • C# Snippet Tutorial - Static Constructors
    05/12/2011 - 03:54

    public StaticTest()
      {
        Debug.WriteLine("StaticTest Regular Constructor At: " + Environment.TickCount);
      }

    should be?

    public StaticTest()
      {
        Debug.WriteLine("StaticTest Regular Constructor At: " + AFieldToAccess);
      }

    By the way, very nice tutorial!