I'm trying to use python to create an instance of a singleton class. The class looks like this:
public sealed class Test
{
private Test()
{
}
public static Test GetInstance()
{
.......
}
}
I've tried everything from here:
How can I create an instance of this class in python?