using System.Collections.Generic; namespace GildedRoseKata { public class GildedRose { IList Items; public GildedRose(IList Items) { this.Items = Items; } public static object GetPropValue(object src, string propName) { return src.GetType().GetProperty(propName).GetValue(src, null); } } }