2006-04-12から1日間の記事一覧

DP

シングルトン。 /// <summary>[DP]シングルトン</summary> public static class Singleton<T> where T : new() { private static readonly T _Instance = new T(); public static T Instance {get { return _Instance; } } } C#2.0だと簡単ですね。ダブルチェックロッキングはして</t>…