北溟鱼逍遥游

王猛扪虱谈天下 孟德煮酒论英雄

导航

统计

公告

03 2005 档案

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 北溟鱼逍遥游 阅读(546) | 评论 (0) 编辑