Created
February 25, 2020 22:22
-
-
Save hk1ll3r/1988688ee51757e30da84aab3787ced0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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