@RailCay,
item.Equals(arrSecond(Array.IndexOf(arrFirst, item)), StringComparison.InvariantCultureIgnoreCase)
item - Current Item from my arrFirst inside the loop
arrSecond - Second Array
Since I need to compare the 1st element from first array with the 1st element in the second array
I have used this,
arrSecond(Array.IndexOf(arrFirst, item))
Getting arrSecond array 1 index item using “Array.IndexOf” method
so here in arrSecond(0) item I need to take, so I am getting the item index value from first array.
StringComparison.InvariantCultureIgnoreCase - this is to ignore the case sentive string comparision