Exemplo n.º 1
0
 public new static NSMutableDictionary FromDictionary(NSDictionary dictionary)
 {
     return NSMutableDictionary.FromObjectsAndKeys(dictionary.Values, dictionary.Keys);
 }
Exemplo n.º 2
0
 public static NSDictionary FromDictionary(NSDictionary dictionary)
 {
     var newDictionary = NSDictionary.FromObjectsAndKeys(dictionary.Values, dictionary.Keys);
     return newDictionary;
 }