how can i only show just a part of alist in datagridview in c# code example
Example: how can i only show just a part of alist in datagridview in c#
grid.DataSource = objects.Select(o => new
{ Column1 = o.SomeValue, Column2 = o.SomeOtherValue }).ToList();