We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output of running dotnet format with default config:
dotnet format
class Foo { } class Program { public static void Main() { List<List<Foo>> list = [[ new Foo(), new Foo(), new Foo(), ], [ new Foo(), new Foo(), ], ]; Console.WriteLine($"Hello {list}"); } }
Just for some inspiration, the same program in dart:
class Foo {} void main() { List<List<Foo>> list = [ [ Foo(), Foo(), Foo(), ], [ Foo(), Foo(), ], ]; print('Hello ${list}'); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Output of running
dotnet format
with default config:Just for some inspiration, the same program in dart:
The text was updated successfully, but these errors were encountered: