list.Add(2); list.Add(3); list.Add(4);list.Add(5); list.Add(6); foreach (int prime in list) // Loop through List with foreach { Console.WriteLine(prime); }It saves the data in following orders as 2,3,6,4,5.I have multiple records appox. 25 records in per batch.Kindly help me to overcome on this issue and what is the reason behind this.Thanks