Skip to content

Instantly share code, notes, and snippets.

@hk1ll3r
Created February 25, 2020 22:22
Show Gist options
  • Save hk1ll3r/1988688ee51757e30da84aab3787ced0 to your computer and use it in GitHub Desktop.
Save hk1ll3r/1988688ee51757e30da84aab3787ced0 to your computer and use it in GitHub Desktop.
class Program
{
static void Main(string[] args)
{
var listOfLists = new List<List<string>>() {
new List<string>() {"one", "two"},
new List<string>() {"three", "four"}
};
Console.WriteLine(listOfLists.ToStringExt());
// output: [[one, two], [three, four]]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment