OpenCvSharp.NativeMethods.core_FileNode_operatorThis_byInt C# (CSharp) Method

core_FileNode_operatorThis_byInt() private method

private core_FileNode_operatorThis_byInt ( IntPtr obj, int i ) : IntPtr
obj System.IntPtr
i int
return System.IntPtr
        public static extern IntPtr core_FileNode_operatorThis_byInt(IntPtr obj, int i);

Usage Example

コード例 #1
0
 /// <summary>
 /// returns element of a sequence node
 /// </summary>
 public FileNode this[int i]
 {
     get
     {
         ThrowIfDisposed();
         IntPtr node = NativeMethods.core_FileNode_operatorThis_byInt(ptr, i);
         if (node == IntPtr.Zero)
         {
             return(null);
         }
         return(new FileNode(node));
     }
 }
All Usage Examples Of OpenCvSharp.NativeMethods::core_FileNode_operatorThis_byInt
NativeMethods