I have 3 strings, these are not real data just an example:
string items = "Item 1, Item 2, Item 3";
string price = "300, 400, 500";
string tax = "30, 50, 60";
What I am trying to do is create an array like so:
[Item 1] => Array([Price] => 300, [Tax] => 30), [Item 2] => Array([Price] => 400, [Tax] => 50), [Item 3] => Array([Price] => 500, [Tax] => 60)
the problem is I have no idea how to do this in ASP.NET, if I had to do this in PHP, this would be no problem.