I am having a problem with an ArrayList of Objects.
...'object' does not contain a definition for 'NearbyBranchId s' and no extension method 'NearbyBranchId s' accepting a first argument of type 'object' could be found

Code:
    public class Parser
    {
        public ArrayList ParseBranch(string dataFileLocation)
        {
            var branchList = new ArrayList();

            using (var
...