Constructors?
Follow on to previous post
Adding a simple class and playing with that, I realize that I can not step into a class' constructor.
I can make a trivial class and make a trivial assignment (i=3

and I reproduce the issue.
However, I can step over the constructor and step into any method.
I reproduced this behaviour in the production code.
So - if you are having this problem, there are 2 work arounds that I know of
1. If you just need to test the code, you can put a main() in the class and call yourself from there. wow.
2. If you can refactor the code , pull the logic out of the constructor and put it in a sub. You should be able to step through the sub. Again, wow.
I think i have narrowed this down quite a bit, if anyone can tell me why i cant step into a constructor, I would appreciate it.