Example #1
0
        public static IEnumerable <T> Select <T>(this DataGridViewSelectedRowCollection rows, Func <object, T> func)
        {
            if (rows == null)
            {
                throw new ArgumentNullException(nameof(rows));
            }

            return(rows.Select(func));
        }