Answers for "how can i only show just a part of alist in datagridview in c#"

C#
0

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();
Posted by: Guest on March-14-2021

Code answers related to "how can i only show just a part of alist in datagridview in c#"

C# Answers by Framework

Browse Popular Code Answers by Language