views:

687

answers:

0

I compiled a MATLAB class to .NET, but instead of having my proper constuctor and methods in my class

classdef Foo
  properties
    p1
    p2
  end
  methods
    function bar
 ...


I have these functions in the .NET assembly:

~Algo()
public Algo()
public void Foo(int numArgsOut, ref MathWorks.MATLAB.NET.Arrays.MWArray[] argsOut, MathWorks.MATLAB.NET.Arrays.MWArray[] argsIn)
public MathWorks.MATLAB.NET.Arrays.MWArray[] Foo(int numArgsOut, params MathWorks.MATLAB.NET.Arrays.MWArray[] varargin)
public MathWorks.MATLAB.NET.Arrays.MWArray[] Foo(int numArgsOut)
public void Foo(params MathWorks.MATLAB.NET.Arrays.MWArray[] varargin)
public void Foo()
protected virtual void Dispose(bool disposing)
public void Dispose()
public void WaitForFiguresToDie()


How do I use them?