Can I show just a subset of a c# collection in the Visual Studio watch window?

Viewed 60

I have a list of about 1000 items and I want to debug and examine in the watch window only items in the range 500 to 550. Is this possible in C# in Visual Studio?

I tried items[500..550] but I got an error

Predefined type 'System.Range' is not defined or imported

0 Answers
Related