You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the formatter tries to break an open generics definition over multiple lines, it ends up looking a bit silly with a line of only comma(s).
// This inputpublicclassClassName{publicvoidJustAMethod(){if(true){vargenericType=typeof(AnExceptionallyLongAndElaborateClassNameToMakeAnExampleRegardingOpenGenerics<,>).MakeGenericType(typeof(string),typeof(int));}}}// Produces this outputpublicclassClassName{publicvoidJustAMethod(){if(true){vargenericType=typeof(AnExceptionallyLongAndElaborateClassNameToMakeAnExampleRegardingOpenGenerics<,>).MakeGenericType(typeof(string),typeof(int));}}}
The text was updated successfully, but these errors were encountered:
If the formatter tries to break an open generics definition over multiple lines, it ends up looking a bit silly with a line of only comma(s).
The text was updated successfully, but these errors were encountered: