Пример #1
0
 /// <summary>
 /// Create an iterator of a #PLIST_ARRAY node.
 /// The allocated iterator should be freed with the standard free function.
 /// </summary>
 /// <param name="node">
 /// The node of type #PLIST_ARRAY
 /// </param>
 /// <param name="iter">
 /// Location to store the iterator for the array.
 /// </param>
 public virtual void plist_array_new_iter(PlistHandle node, out PlistArrayIterHandle iter)
 {
     PlistNativeMethods.plist_array_new_iter(node, out iter);
     iter.Api = this.Parent;
 }