csharpier
csharpier copied to clipboard
Some edge cases with ClassDeclarations and Generics
These are a couple of edge cases that we need to be sure to deal with after we finalize how we want to format classes with base lists.
public class InputRadio<
[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.All)]
TValue
> : ComponentBase { }
private class TestRemoteAuthenticationService :
RemoteAuthenticationService<
RemoteAuthenticationState,
RemoteUserAccount,
OidcProviderOptions
>
{ }
public class ClientSideHostingTest :
ServerTestBase<
BasicTestAppServerSiteFixture<TestServer.StartupWithMapFallbackToClientSideBlazor>
>
{ }