AddressBook.ABMultiValueEntry.ToIntPtr C# (CSharp) Method

ToIntPtr() private method

private ToIntPtr ( value ) : IntPtr
return System.IntPtr
		NativeHandle ToIntPtr (T value)
		{
			var mutable = self as ABMutableMultiValue<T>;
			if (mutable is null)
				throw CreateNotSupportedException ();
			return mutable.toNative (value);
		}