I currently have a class in which I only have static members and constants, however I\'d like to replace it with a singleton wrapped in an interface.
But how can I do th
You can make all the other members of your singleton implement corresponding members in an interface. However, you are correct that the Instance property cannot be part of the interface since it is (and must remain) static.
Instance