I want to copy the entire column from excel to array list to compare the data.
Dim file_name As New ArrayList
file_name.Add(xlworksheet1.Range("a1").EntireColumn)
Console.WriteLine(file_name)
For Each Name1 In file_name
Console.WriteLine(Name1)
Next