I have a purchased VB.Net class with very bad documentation and I'm trying to understand how it works.
I executed some code and came up with a variable X(0) as shown in Visual Studio 2010 watch window :
X(0) has some properties I would like to access : CustomPropertyStore.
I did
X(0).CustomPropertyStore(0)
to get the first value but but it's throwing an error:
Public member 'CustomPropertyStore' on type 'BasePersistentClass' not found.
How come that, "CustomPropertyStore" is shown as a property of object X(0) and it's inaccessible ?
Thanks