I want to store an list of key value pair lists in a lightweight structure. This seems too cumbersome. What\'s better? Does List> add
Consider using aliasing for shorthand:
namespace Application { using MyList = List>>; public class Sample { void Foo() { var list = new MyList(); } } }