Description
When debugging a Blazor WASM application on .NET 5 RC2, I noticed that the debugger populates the locals inspector with private properties from the ComponentBase base class.

The extraneous values displayed are private book-keeping properties used by Blazor's base component class (ref). The class is defined as a public abstract class.
Configuration
- .NET 5 RC 2 (5.0.0-rc.2.20475.17)
- Windows 10
- Visual Studio 16.8 Preview 3
Regression?
This looks like a regression from 3.2. Setting a breakpoint at the same point in a 3.2 app does not surface the issue.

Other information
- Install the above version of the SDK.
- Create a new Blazor WASM project with .NET 5 in VS's project creation view.
- Click
F5.
- Set a breakpoint in the
IncrementCount method in the Counter.razor page and observe the issue.