I've got the follow problem when I used the "Change Signature" add-in. With the following function,
public bool init(object Ruolo)
when I add another parameter (string AppName) before the old one I get
public bool init(string AppName, object appName)
instead of
public bool init(string AppName, object Ruolo)
However, If I press CTRL+Z I get the expected result.
No problems if I work as usual (new params to the right of the old ones ).