Beispiel #1
0
 /// <summary>
 /// Append a new item at the end of a #PLIST_ARRAY node.
 /// </summary>
 /// <param name="node">
 /// the node of type #PLIST_ARRAY
 /// </param>
 /// <param name="item">
 /// the new item. The array is responsible for freeing item when it is no longer needed.
 /// </param>
 public virtual void plist_array_append_item(PlistHandle node, PlistHandle item)
 {
     PlistNativeMethods.plist_array_append_item(node, item);
 }