I have some old python code that uses the pywin32 extensions. Starting out with .net, I would like to port it to ironpython.
The old python code uses things like pythoncom.com_error, pywintypes.Time and interfaces a COM module that implements the IDispatch interface.
Does the .net libraries of ironpython have all I need for communicating with the COM module? Specifically, does it have something to replace com_error and Time?
Thanks.