Re: [Ironpython-users] How to free memory in ironpython

2016-11-26 Thread Tim Baigent
I'm out of my depth here, forgive me for not keeping quiet! But perhaps you are be best to create separate instances of the MapWinGIS.Utils class, one for each call, so that there is no chance for inadverently sharing values between instance members. So something like this (and here I'm *really

Re: [Ironpython-users] How to free memory in ironpython

2016-11-26 Thread Djordje Spasic via Ironpython-users
Thank you for the suggestion Tim! I tried something similar. I cannot call methods if I create an instance of the UtilsClass class, as I always get an error message: Could not convert argument 0 for call to UtilsClassMethod but I can if I call them as static methods. So I tried this: utils1 = M