I\'d like to set up a multidimensional list. For reference, I am working on a playlist analyzer.
I have a file/file-list, which my program saves in a standard list.
You can also..do in this way,
List> Parent=new List>(); List Child=new List(); child.Add(2349); child.Add("Daft Punk"); child.Add("Human"); . . Parent.Add(child);
if you need another item(child), create a new instance of child,
Child=new List(); child.Add(2323); child.Add("asds"); child.Add("jshds"); . . Parent.Add(child);