csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Generic field breaking

Open belav opened this issue 3 years ago • 0 comments

internal static Dictionary<
    string,
    OpenIdConnectAuthenticationOptions
> OpenIdConnectAuthenticationOptions = new Dictionary<string, OpenIdConnectAuthenticationOptions>();

Would probably be better as

internal static Dictionary<string, OpenIdConnectAuthenticationOptions>
    OpenIdConnectAuthenticationOptions =
        new Dictionary<string, OpenIdConnectAuthenticationOptions>();

belav avatar Mar 01 '22 16:03 belav