I'm currently working on an Inventory app assignment on Windows Forms C# My main Form displays 3 options which are:
- Register a product
- Purchase a product and
- Exit
For options 1 and 3 I already have what I need. However, for option 2, which is where the user should be able to purchase products already registered, I don't know how to "look for the product" in the files where it's saved.
The file stores the products info like this: (showing the name of the product, the quantity, the price how many pieces have been sold, from top to bottom)
Chair
100
10
0
Mouse
95
15
5
Laptop
50
13
4
I did this before in Console Application, but I didn't store info in Files, I did it with arrays and simply used a "for" cycle to find the product I needed and from there I could do the rest...
I was told in class that I needed to read the file line by line until I find the product I need and turn it into a variable? How can I do that in a Forms platform?
Assuming the file format is strongly consistent, something like this should work: