public void CopyTo(TypeInterfaceCollection copy)
 {
     foreach (var item in this)
     {
         copy.Add(item);
     }
 }
 public virtual void Visit(TypeInterfaceCollection typeInterfaces)
 {
     for (int i = 0; i < typeInterfaces.Count; i++)
     {
         Visit(typeInterfaces[i]);
     }
 }
Esempio n. 3
0
 public virtual void Build(TypeInterfaceCollection typeInterfaces)
 {
     for (int i = 0; i < typeInterfaces.Count; i++)
     {
         var typeInterface = typeInterfaces[i];
         if (Build(ref typeInterface))
         {
             typeInterfaces[i] = typeInterface;
         }
     }
 }