public virtual NSObject CopyWithZone(IntPtr zone)
        {
            IntPtr           copyHandle = Messaging.IntPtr_objc_msgSendSuper_IntPtr(SuperHandle, selCopyWithZone, zone);
            ImageAndTextCell cell       = new ImageAndTextCell(copyHandle)
            {
                Image = Image,
            };

            _refPool.Add(cell);

            return(cell);
        }
		public virtual NSObject CopyWithZone(IntPtr zone) {
			IntPtr copyHandle = Messaging.IntPtr_objc_msgSendSuper_IntPtr(SuperHandle, selCopyWithZone, zone);
			ImageAndTextCell cell = new ImageAndTextCell(copyHandle) {
				Image = Image,
			};

			_refPool.Add(cell);
			
			return cell;
		}