using System.Collections.Generic; namespace Wizard; public class Country { public readonly string _countryId; public readonly string _categoryText; private int index = -1; public Country(string[] columns, Dictionary textDic) { _countryId = columns[++index]; _categoryText = textDic[columns[++index]]; } }