예제 #1
0
파일: Contact.cs 프로젝트: pubudu538/WBMSP
 public static Contact createContact(int acc)
 {
     if (singleton == null)
     {
         singleton = new Contact(acc);
     }
     return singleton;
 }
예제 #2
0
파일: Contact.cs 프로젝트: pubudu538/WBMSP
 private void Contact_FormClosing(object sender, FormClosingEventArgs e)
 {
     singleton = null;
 }