-1
votes
4answers
170 views

Private member for singleton class

I have a singleton class for which I need a private member. I want that member to be empty until I use my setter method to set the right data. class PlaybackHelper{ private: PlaybackHelper(); ...
2
votes
4answers
2k views

Possible to use a singleton with a non-default constructor in C#?

I'm implementing a notification framework for one of my projects. As i want it to be very generic, the user can use several transport layers, so that he doesn't really need to care about using one ...