예제 #1
0
파일: wannabeDB.cs 프로젝트: sklirg/tmm4230
 public void init()
 {
     person = new Person();
     try
     {
         person.suchPopulate();
     }
     catch (Exception e)
     {
         Console.WriteLine(e);
     }
 }
예제 #2
0
 private void init()
 {
     person = new Person();
     person.suchPopulate();
     nameArray = person.getValues();
 }