AmbulanceDemoCode.EnglishCountryNames.Process C# (CSharp) Метод

Process() публичный Метод

public Process ( IRow input, IUpdatableRow output ) : IRow
input IRow
output IUpdatableRow
Результат IRow
        public override IRow Process(IRow input, IUpdatableRow output)
        {
            string text = input.Get<string>("country");
            if (EnglishCountryNames.CountryTranslation.Keys.Contains(text))
            {
                text = EnglishCountryNames.CountryTranslation[text];
            }
            output.Set<string>("country", text);
            return output.AsReadOnly();
        }
EnglishCountryNames