コード例 #1
0
ファイル: LColorPool.cs プロジェクト: 207h2Flogintvg/LGame
		public static LColorPool _() {
			 lock (typeof(LColorPool)) {
						if (pool == null) {
							pool = new LColorPool();
						}
					}
			return pool;
		}
コード例 #2
0
ファイル: LColorPool.cs プロジェクト: zx8326123/LGame
 public static LColorPool _()
 {
     lock (typeof(LColorPool)) {
         if (pool == null)
         {
             pool = new LColorPool();
         }
     }
     return(pool);
 }