Accessing Class from another Class
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
I have a dll that defines public properties within a class. These will be set from an external application. Within that dll, I am creating another class, and want to either pass in the properties, or make them accesible from the new class. However, when I try to pass in class A to class B, I get into an infinite loop. I am also not able to access Class A's properties from within Class B. Class A is Public, class B is private. Is there something special I need to do to access Class A props from within Class B?