Ejemplo n.º 1
0
 public static Contact createContact(int acc)
 {
     if (singleton == null)
     {
         singleton = new Contact(acc);
     }
     return singleton;
 }
Ejemplo n.º 2
0
 private void Contact_FormClosing(object sender, FormClosingEventArgs e)
 {
     singleton = null;
 }