So instead of:
Experts myExperts = new Experts();
you would use:
Experts myExperts = Experts.Instance();
Main Topics
Browse All TopicsHi Experts,
How do I limit a form or a class to only allow one instance? ShowDialog() is not a possibilty.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here is a link to Microsoft's patterns and practices page on implementing singletons in C#
http://msdn.microsoft.com/
Business Accounts
Answer for Membership
by: randydandyPosted on 2004-02-12 at 15:12:45ID: 10347854
This is called the singleton design pattern, and can be implemented by making the constructor of the class private and using a static field to maintain the one instance of the class. Here is a simple example:
public class Experts {
private static Experts _instance; // the private field maintaining the one instance of this class
private int _numExperts;
// note constructor is private
private Experts() {
_numExperts = 50000;
}
// get the one instance of this object.
public static Experts Instance() {
if(_instance == null) _instance = new Experts(); // create new instance if necessary
return _instance;
}
// example property
public int NumExperts {
get { return _numExperts; }
set { _numExperts = value; }
}
}