Is there a way to make multiple data field merge together and become a single List. There is two array which is
int[] QueueNo = {10, 20, 30, 40};
int [] WaitingTime = {1, 2, 3, 4}
How do I insert this two data into one List
So that I can a foreach
loop to insert the data into the database
foreach(var item in list)
{
////Code For Create Data
}