Thursday, June 8, 2006

99 Ford Taurus Rear Deck

Generic Singleton Implementation

   public      static     class   Singleton<T>   where   T :   new  () 
{
private static T instance = new T();
public static T Instance
{
get { return instance; }
}
}

0 comments:

Post a Comment