Hi, I am a newbie to IronPython. I wrote a small test class in IronPython which I want to use in vb.net.
For e.g. class MksMath(object): def __init__(self): pass def add(a,b): return a+b def sub(a,b): return a-b def mul(a,b): return a*b def div(a,b): return a/b Using SharpDevelop 3.2, I am compiling it as a class library which produces the following files: IronPython.dll IronPython.Modules.dll IronPython.Modules.xml IronPython.xml Microsoft.Dynamic.dll Microsoft.Scripting.Core.dll Microsoft.Scripting.Debugging.dll Microsoft.Scripting.dll Microsoft.Scripting.ExtensionAttribute.dll mksmath.dll Now how do I use this class in vb.net? Sorry if my question is too basic. -- mks -- _______________________________________________ Users mailing list Users@lists.ironpython.com http://lists.ironpython.com/listinfo.cgi/users-ironpython.com