Re: [Ironpython-users] Retrieving Ironpython variables within .NET

2011-10-12 Thread Jeff Hardy
On Wed, Oct 12, 2011 at 9:04 AM, Luis Vallejo wrote: > And I want to retrieve the variable "x" from C# change its value and inject > it back to Ironpython the problem I face is that well.. i dont know how. I > have tried with the scope.GetItems() but it returns 0. the only time it > returns the va

[Ironpython-users] Retrieving Ironpython variables within .NET

2011-10-12 Thread Luis Vallejo
Hi Guys, Im new to Ironpython and I was reading the book Ironpython in Action now in Chapter 15, there is something i want to do but i just cant make it work. I have the following script class Item: def __init__(self,value,quality): self.value = value self.quality = quali