S
STom
I have a class declare like this:
<Serializable>Public Class Talk
Public Structure _localTalk
Public _iTalkNumber as Integer
End structure
End Class
I can see the structure from other classes, but I cannot see the internal
data member. I've also tried setting the internal data member to private and
created a public property, but I couldn't see that either.
What simplistic thing am I missing here?
Thanks.
STom
<Serializable>Public Class Talk
Public Structure _localTalk
Public _iTalkNumber as Integer
End structure
End Class
I can see the structure from other classes, but I cannot see the internal
data member. I've also tried setting the internal data member to private and
created a public property, but I couldn't see that either.
What simplistic thing am I missing here?
Thanks.
STom