该文被密码保护。 Read More
posted @ 2010-10-28 13:46 庚武 Views(3) Comments(0) Diggs(0) Edit
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace SingletonDemo{ public sealed class Singleton { private Singleton() { } private static... Read More
posted @ 2010-10-28 00:42 庚武 Views(310) Comments(0) Diggs(0) Edit