Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support expanding large arrays >1000 in debug view #1859

Open
CoenraadS opened this issue Nov 13, 2017 · 3 comments
Open

Support expanding large arrays >1000 in debug view #1859

CoenraadS opened this issue Nov 13, 2017 · 3 comments

Comments

@CoenraadS
Copy link

Environment data

dotnet --info output:

.NET Command Line Tools (2.0.2)

Product Information:
 Version:            2.0.2
 Commit SHA-1 hash:  a04b4bf512

Runtime Environment:
 OS Name:     Windows
 OS Version:  10.0.15063
 OS Platform: Windows
 RID:         win10-x64
 Base Path:   C:\Program Files\dotnet\sdk\2.0.2\

Microsoft .NET Core Shared Framework Host

  Version  : 2.0.0
  Build    : e8b8861ac7faf042c87a5c2f9f2d04c98b69f28d

VS Code version: 1.18.0
C# Extension version: 1.13.0

Steps to reproduce

Have an array with >1000 values

Expected behavior

image

Actual behavior

Only shows values 0...999, no way to expand more
image

@CoenraadS CoenraadS changed the title Support expanding large arrays in debugger Support expanding large arrays >1000 in debug view Nov 13, 2017
@gregg-miskelly
Copy link
Contributor

@CoenraadS In case you are not aware: you can using Linq to see your data now. Ex: cFile.Skip(1000).Take(1000).ToArray() or maybe better yet cFile.Where(x => x.MyCondition == true).ToArray().

@bakeiro
Copy link

bakeiro commented Apr 20, 2018

There are any plans to fix this soon?

@gregg-miskelly
Copy link
Contributor

It is certainly something we would like to address, but I am not sure when anyone will have the cycles to get to it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants