Skip to content

Instantly share code, notes, and snippets.

@hk1ll3r
Last active February 18, 2020 00:25
Show Gist options
  • Save hk1ll3r/98800b6d4aea1f1467cfaaecd21e36be to your computer and use it in GitHub Desktop.
Save hk1ll3r/98800b6d4aea1f1467cfaaecd21e36be 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("ToString: " + listOfLists.ToString());
Console.WriteLine("ToStringExt: " + listOfLists.ToStringExt());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment