Pretty Print Array of Arrays in .NET C#

I had a need to pretty-print an array of arrays while parsing some JSON recently. I couldn't find anything I liked, so I thought I'd post what I ended up with here to save others some time.

https://gist.github.com/aaronhoffman/4232d28b769b3e95b143cf609a9e27cc


Example Output:
[[1,2,3],[3,5,7],[2,4,6]]
[[1,2,3]]
[[1,2,3],[3,5,7,9,11],[2,4,6]]









Hope this helps,
Aaron

Comments

Popular posts from this blog

Search iPhone Text Messages with SQLite SQL Query

How to Turn Off Microsoft Arc Touch Mouse Scroll Sound Vibration

Configure SonarAnalyzer.CSharp with .editorconfig, no need for SonarCloud or SonarQube