csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Some edge cases with ClassDeclarations and Generics

Open belav opened this issue 4 years ago • 0 comments

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>
    >
{ }

belav avatar Jun 07 '21 15:06 belav