摘要: using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication15{ class Program { static void Main(string[] args) { //Singleton stest = new Singleton(); Singleton.CreateInstance(); Singleton.CreateInstance(); Console.WriteLine("OK"); } } public class Singleton 阅读全文
posted @ 2011-09-28 14:11 brian_lee 阅读(207) 评论(0) 推荐(0) 编辑