Пример #1
0
 public int[] GetElements(ElementType faceType)
 {
     if (faceType == Type)
     {
         return(items);
     }
     else
     {
         if (_collection != null)
         {
             return(_collection.GetElements(faceType));
         }
     }
     return(null);
 }
Пример #2
0
 public int[] GetElements(ElementType faceType)
 {
     return(collection.GetElements(faceType));
 }