Iam using 3 string arrays.i want to get each item corresponds to the index,ie if itnme will have the second item,then i need to get second item from other two string arrays such as qntity,price.How can i possible this?
string[] itmnme= new string[0] { };
string[] price= new string[0] { };
string[] qntity= new string[0] { };
foreach (string iname in itmnme)
{
foreach (string qnt in qntity)
{
foreach (string prc in price)
{
}
}
}