ImageMagick.MagickScript.CreatePointDs C# (CSharp) Метод

CreatePointDs() приватный Метод

private CreatePointDs ( XmlElement element ) : Collection
element System.Xml.XmlElement
Результат Collection
    private Collection<PointD> CreatePointDs(XmlElement element)
    {
      Collection<PointD> collection = new Collection<PointD>();
      foreach (XmlElement elem in element.SelectNodes("*"))
      {
        collection.Add(CreatePointD(elem));
      }
      return collection;
    }
  }
MagickScript