In my Blazor client-side app, I am trying to override OnAfterRenderAsync using
@code {
protected override async Task OnAfterRenderAsync()
{
}
}
I get an error
no suitable methods to override!?
On the other hand this override works just fine:
protected override async Task OnInitializedAsync()
{
}
Any clues what is wrong here?
