I am looking to use the C# Linked list class instead of creating my own, but I'm not sure how to stick multiple items in the LinkedList<>.
I would like to do something like LinkedList<string, List>, to allow me to have:
entry1->string
And also have a List:
entry2->string, and list
All I see online from tutorials it that it will allow LinkedList only,
Any ideas on how to get more than 1 value in my linked list? Thanks.