public void PropogateAttachments(CVBuffer destinationBuffer) { if (destinationBuffer == null) { throw new ArgumentNullException("destinationBuffer"); } CVBufferPropagateAttachments(handle, destinationBuffer.Handle); }
public void PropogateAttachments(CVBuffer destinationBuffer) { if (destinationBuffer is null) { throw new ArgumentNullException(nameof(destinationBuffer)); } CVBufferPropagateAttachments(Handle, destinationBuffer.Handle); }