Shredderroy
Shredderroy

Reputation: 2920

Visual Studio 2013 Ultimate debugger not showing entire list

I have placed a breakpoint in my F# code to examine the contents of a particular list. The count at the top clearly says that the list contains 93 elements, something I have confirmed separately in SQL. But the debugger gets truncated after the 51st element, as can be seen from the snippet below:

enter image description here

Can someone please tell me why I cannot see the entire list? I don't remember encountering this error before. Do I need to set some configuration variable somewhere?

Thanks in advance for your help.

Upvotes: 2

Views: 69

Answers (1)

latkin
latkin

Reputation: 16792

This is baked into the runtime, and was evidently a deliberate design decision at some point. See the relevant line in prim-types.fs

Not sure why this limit was imposed. You can file a bug on the Codeplex page if you want to see this changed.

Upvotes: 2

Related Questions