Re: [Python.NET] instance property must be accessed through a class instance

2013-09-24 Thread Charley Peng
I forgot to add that DeviceList just returns a private variable (this.deviceList) On Tue, Sep 24, 2013 at 11:14 AM, Charley Peng wrote: > Hi, > > Have come across the error after trying to get the property of the device > device.DeviceList, > TypeError: instance property must be accessed throug

[Python.NET] instance property must be accessed through a class instance

2013-09-23 Thread Charley Peng
Hi, Have come across the error after trying to get the property of the device device.DeviceList, TypeError: instance property must be accessed through a class instance The .NET class has the definition public List DeviceList (which just returns a I have also tried the method get_DeviceList However