Skip to content

Instantly share code, notes, and snippets.

@Buravo46
Buravo46 / Singleton.cs
Last active February 8, 2022 16:05
【C#】ジェネリックなシングルトンパターンのテンプレート
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System;
/*===============================================================*/
/**
* ジェネリックなシングルトンパターン
* 参考URL : http://msdn.microsoft.com/ja-jp/library/ms998558.aspx
* このジェネリッククラスはclassとnewの型パラメーターの制約をしている