Guest User

Untitled

a guest
Oct 21st, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class Singleton
  2. {
  3. private static Singleton instance=null;
  4.  
  5. private Singleton()
  6. {
  7. }
  8.  
  9. public static Singleton Instance
  10. {
  11. get
  12. {
  13. if (instance==null)
  14. {
  15. instance = new Singleton();
  16. }
  17. return instance;
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment