-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
mono/mono
#20318Labels
Milestone
Description
This may be related to or part of this. But since the symptoms are somewhat different, I thought I would see if it is a new issue.
I have a public class (in the project's namespace) that inherits a base class. The screenshot shows that the base class properties are not directly visible in the debugger, but are within the instantiated class when referenced in the code.
`namespace ME_Web
{
public class IBSpecCheckbox : IBSpecBase
{
public bool CheckState { get; set; }
}
}
namespace ME_Web
{
public class IBSpecBase
{
public C_.IBType IBType { get; set; }
public string BBName { get; set; }
public string Title { get; set; }
public string BaseHelp { get; set; }
public int MaxChars { get; set; }
}
}`
Reactions are currently unavailable