csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

FieldDeclaration breaking

Open belav opened this issue 4 years ago • 0 comments

// used to be
        internal static readonly Lazy<IDictionary<object, object>> SmtpDefaults =
            new Lazy<IDictionary<object, object>>(ReadSmtpDefaults);

// now is
        internal static readonly Lazy<IDictionary<object, object>> SmtpDefaults = new Lazy<
            IDictionary<object, object>
        >(ReadSmtpDefaults);

belav avatar Jul 27 '21 23:07 belav