Ejemplo n.º 1
0
 /// <summary>
 /// Insert a new item into a #PLIST_DICT node.
 /// </summary>
 /// <param name="node">
 /// the node of type #PLIST_DICT
 /// </param>
 /// <param name="item">
 /// the new item to insert
 /// </param>
 /// <param name="key">
 /// The identifier of the item to insert.
 /// </param>
 public virtual void plist_dict_insert_item(PlistHandle node, string key, PlistHandle item)
 {
     PlistNativeMethods.plist_dict_insert_item(node, key, item);
     item.SetHandleAsInvalid();
 }