using System; using System.Collections.Generic; namespace Tester.Misc { public class Misc { public Misc () { } public void GroupConfiguration(IEnumerable groups) { IList Groups = new List(groups); } private int TestProperty { get;set; } public void Init (string[] args) { // Test incrementing a property TestProperty = 0; TestProperty++; } } }