Implement some method to re-use ironpython functions, rather than copy/paste into many scripts. Ie, allow import of user code. c/c++ style #include, etc.
Thank you for the suggestion. This is something we have discussed doing, through a few different approaches, but other items took precedence. It is currently possible to include C# Framework and use the objects within.
For example if you want to use the C# DateTime objects
Thank you for the suggestion. This is something we have discussed doing, through a few different approaches, but other items took precedence. It is currently possible to include C# Framework and use the objects within.
For example if you want to use the C# DateTime objects
from System import DateTime, Exception, String
mySheet [cell.Col, cell.Row].Value = DateTime.Now.ToString(dateTimeFormat)
As you can see we are using C# here DateTime.Now.ToString()