I need some help in coding this in C#
I have a list of Baskets and their Global_Weights in overall Basket in Kilograms:
Basket1, Basket2, Basket3, Basket4
0.1, 0.3, 0.9,0.6
Each of the Basket consist of the following thing:
Name,Level1, level2,Local_Weights
Name: String type
Level1:Double Type
Level2:Double Type
Local_Weights:Double Type
Each Basket will consist of N number of (Name,Level1, level2,Local_Weights) and there are M Baskets N and M are variable which will be user Input
Should I be using List of list for this or something else any pointer on how to go about coding this?
How will I be accessing the members inside each of the Basket and perform calculation on them.