private static IList GetList()
 {
     var list = new ArrayList();
     var employee = new TestEmployee {EmployeeName = "S P Kumar"};
     list.Add(employee);
     return list;
 }
        private static IList GetList()
        {
            var list     = new ArrayList();
            var employee = new TestEmployee {
                EmployeeName = "S P Kumar"
            };

            list.Add(employee);
            return(list);
        }