I'm using C# with Visual Studio 2010. I've got a large array of floats (1M floats) and need to be able to look at small chunks of data in the middle of the array during debugging.
This can be done using the locals window, however the scroll bar maps onto 1M array elements, making it difficult to adjust the scroll bar with any precision.
Is there some way to look at, say k=688392 for f[k] to f[k+100] in the debugger?
Thanks