AddressBook.ABMultiValueEntry.ToIntPtr C# (CSharp) Метод

ToIntPtr() приватный Метод

private ToIntPtr ( value ) : IntPtr
Результат System.IntPtr
		NativeHandle ToIntPtr (T value)
		{
			var mutable = self as ABMutableMultiValue<T>;
			if (mutable is null)
				throw CreateNotSupportedException ();
			return mutable.toNative (value);
		}