public ABMutableStringMultiValue() : base(ABMultiValue.CreateMutable(ABPropertyType.MultiString), ABPerson.ToString, ABPerson.ToIntPtr) { }
public ABMutableDictionaryMultiValue() : base(ABMultiValue.CreateMutable(ABPropertyType.MultiDictionary)) { }
public bool RemoveAt(nint index) { return(ABMultiValue.RemoveValueAndLabelAtIndex(Handle, index)); }
public ABMutableDateMultiValue() : base(ABMultiValue.CreateMutable(ABPropertyType.MultiDateTime)) { }
internal ABMultiValueEntry(ABMultiValue <T> self, nint index) { this.self = self; this.index = index; }