0
Tech Writer 4.2k 2.3k 10y A List has a Count property, is that what you are looking for? If not, please provide some code to explain what you have exactly.
Accepted 1
List has a Count() extension method that you can use to get the actual item counts in the list. So you could do:
int count = YourList.Count();
0
Thanks to the both of you for your answers :) !