单例模式

 #region 1.0 单例类的写法

private static readonly MessageMgr _instance;
static MessageMgr()
{
   _instance = new MessageMgr();

}

private MessageMgr() { }

public static MessageMgr Instance
{
get
{
return _instance;
}
}

posted @   陌念  阅读(108)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示