Ejemplo n.º 1
0
    public static long[] get_vector(ULongIntVector src, bool own)
    {
        IntPtr ptr = modshogunPINVOKE.ULongIntVector_get_vector__SWIG_0(ULongIntVector.getCPtr(src), own);

        if (modshogunPINVOKE.SWIGPendingException.Pending)
        {
            throw modshogunPINVOKE.SWIGPendingException.Retrieve();
        }
        int[] size = new int[1];
        Marshal.Copy(ptr, size, 0, 1);

        int len = size[0];

        long[] ret = new long[len];

        Marshal.Copy(new IntPtr(ptr.ToInt64() + Marshal.SizeOf(typeof(int))), ret, 0, len);
        return(ret);
    }
Ejemplo n.º 2
0
 public ULongIntVector(ULongIntVector orig) : this(modshogunPINVOKE.new_ULongIntVector__SWIG_5(ULongIntVector.getCPtr(orig)), true)
 {
     if (modshogunPINVOKE.SWIGPendingException.Pending)
     {
         throw modshogunPINVOKE.SWIGPendingException.Retrieve();
     }
 }