For a personal project I want to make a simple Inventory system in C#. There are three inputs, itemName(string), itemQuantity(int), itemLevelAlert(int), and then a button.
When the 'Add' button is clicked, I want the input data to be grouped and stored somewhere. I am not experienced in C# enough to know the best way to do this.
In JavaScript I'd probably use a multi-dimension array:
var inventoryArray = [["Hammer", 25, 5], ["Nails", 100, 20]]
and simply push the input to that array. I'm still learning C# and it goes about arrays a bit differently.
Could I do something similar with a list? I'm probably jumping into deep here considering my inexperience but I feel like I learn better that way.