Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tolland/d772792325176c2ac13b2b4987ec0470 to your computer and use it in GitHub Desktop.
Save tolland/d772792325176c2ac13b2b4987ec0470 to your computer and use it in GitHub Desktop.
using System;
using System.Collections;
public class SingletonBase<T> where T : SingletonBase<T>{
}
public class MyChildSingletonA : SingletonBase<MyChildSingletonA> {
}
public class MyChildSingletonB : SingletonBase<MyChildSingletonB> {
}
public class TomQ {
public SingletonBase a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment