I have a List in my code.
var config = configRepository
.ODataQueryable()
.ToList();
// looking for a way to send the data in variable config to the Console here
Console.ReadLine();
I would like to view this list on the Console of my C# application. Is there some way that I can have this dumped to the console without having to manually code in a loop?
Update:
I tried a few of the methods here and they give me for the four rows:
Entities.Models.Core.Config
Entities.Models.Core.Config
Entities.Models.Core.Config
Entities.Models.Core.Config
Does anyone have any suggestion updates. It seems like the list is a list of objects. Thanks