namespace MyFrameworkPure
{
///
/// µ¥Àý»ùÀà
///
///
public class CSingleton where T : new()
{
private static readonly object lockHelper = new object();
private static T m_sInstance;
public static T sInstance
{
get
{
if (m_sInstance == null)
{
lock (lockHelper)
{
if (m_sInstance == null)
{
m_sInstance = new T();
}
}
}
return m_sInstance;
}
}
//destroy instance
public void Destroy()
{
m_sInstance = default(T);
}
}
}