コード例 #1
0
 private void PushBackMatrixItem(NativeMethods.MatrixElementType type, IDlibObject item)
 {
     item.ThrowIfDisposed();
     NativeMethods.array_matrix_pushback(type, this.NativePtr, item.NativePtr);
 }
コード例 #2
0
 private void PushBackArray2DItem(NativeMethods.Array2DType type, IDlibObject item)
 {
     item.ThrowIfDisposed();
     NativeMethods.array_array2d_pushback(type, this.NativePtr, item.NativePtr);
 }