Singleton
摘要:
using System;public sealed class Singleton1{static Singleton1 instance;Singleton1(){}public static Singleton1 Instance{get{if (instance == null)instance = new Singleton1();return instance;} }}public s... 阅读全文
posted @ 2005-03-15 10:12 北溟鱼逍遥游 阅读(718) 评论(0) 推荐(0)
浙公网安备 33010602011771号