Пример #1
0
 public System.Collections.IEnumerator GetPersonsWithoutPapers()
 {
     System.Collections.ArrayList personWithPapers = new System.Collections.ArrayList();
     foreach (Person person in ProjectsMember)
     {
         if (!PublicationList.Contains(person))
         {
             yield return(person);
         }
     }
 }