BODY { font-family:Arial, Helvetica, sans-serif;font-size:12px; }
i´m developing a  application with Winforms with a scriptable
Ironpython and i want expose to use in script with Ironpython my C#
Classes.
 For example: 

        I have a c# class coded in my form namespace 

         public int Add(int arg1, int arg2)
         {
             return arg1 + arg2;
         } 

        In IronPython i need do this: 

        add_result = Add(2,5) 

        I see that i can generate a DLL and import, but i think that this is
no the only way. 
 How to code this?
 Thank you
 Mark
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to