mirror of
https://github.com/claunia/plist-cil.git
synced 2025-12-16 19:14:26 +00:00
Implement NSDictionary.CopyTo()
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2015-02-20 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* NSDictionary.cs:
|
||||
Implement NSDictionary.CopyTo()
|
||||
|
||||
2015-02-20 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* UID.cs:
|
||||
|
||||
@@ -601,7 +601,8 @@ namespace Claunia.PropertyList
|
||||
/// <param name="arrayIndex">The zero-based index in array at which copying begins.</param>
|
||||
public void CopyTo(KeyValuePair<string, NSObject>[] array, int arrayIndex)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
ICollection<KeyValuePair<string, NSObject>> coll = dict;
|
||||
coll.CopyTo(array, arrayIndex);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user