cant see sub class properties with base class List

aronmatthew

Well-known member
Joined
Aug 5, 2019
Messages
68
Programming Experience
Beginner
for some reason I cant view properties while debugging using sub class with base class List
1748109912812.png
1748109952947.png
 
Child classes can only see protected, public, or internal members of the ancestors classes.
 
Look closely. You declared id as private.

In the future, please post code as text in code tags, not as a screenshot.
 
Are you saying, without actually saying, that you created a List<_temp1> object and you're expecting to see properties of a _temp object? If not, what are you saying? How about you provide a FULL and CLEAR explanation of the problem and provide that actually demonstrates it?
 
Back
Top Bottom