Beispiel #1
0
 /// <summary>
 /// Remove an existing position in a #PLIST_DICT node.
 /// Removed position will be freed using #plist_free
 /// </summary>
 /// <param name="node">
 /// the node of type #PLIST_DICT
 /// </param>
 /// <param name="key">
 /// The identifier of the item to remove. Assert if identifier is not present.
 /// </param>
 public virtual void plist_dict_remove_item(PlistHandle node, string key)
 {
     PlistNativeMethods.plist_dict_remove_item(node, key);
 }