Thursday 15 July 2010

Variable inspection in Visual Studio 2008 in asp.net IronPython inside a class -


I must inspect the value of a variable inside a class in ASP.NET IronPython in Visual Studio 2008. Visual Studio 2008 inspector does not work for IronPython (If Inspector VS works for ASP.NET IronPython in 2008 and it is working for me plz tell me) and you can not use Response.write - Response .end What can I do to know the value of variables inside a class?

You will need to dig into the dictionary of the object dict field on this object should be there. If the variable is in the class instead, then you will need to dig into class and then in the class dictionary. Unfortunately, it is not painful to fix it now. For the future release of IronPython, it has already improved - the current source is checked in the tree (which will be 2.6.1) Support through proxy that makes it better, so if you are using 2.6 and are ready to build from source then you can get current sources and let one go.


No comments:

Post a Comment