コード例 #1
0
ファイル: CVBuffer.cs プロジェクト: tondat/xamarin-macios
        public void PropogateAttachments(CVBuffer destinationBuffer)
        {
            if (destinationBuffer == null)
            {
                throw new ArgumentNullException("destinationBuffer");
            }

            CVBufferPropagateAttachments(handle, destinationBuffer.Handle);
        }
コード例 #2
0
ファイル: CVBuffer.cs プロジェクト: cwensley/xamarin-macios
        public void PropogateAttachments(CVBuffer destinationBuffer)
        {
            if (destinationBuffer is null)
            {
                throw new ArgumentNullException(nameof(destinationBuffer));
            }

            CVBufferPropagateAttachments(Handle, destinationBuffer.Handle);
        }