Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 VSCode 和 C# Omnisharp 扩展开发一个 dotnet 核心项目。
我的调试视图如下所示:
...
是否可以扩展整个阵列?我想查看位置 2163 周围的一些线路,但无法查看超过 999 的线路。
这是 Omnisharp 的当前限制,我看到您已经打开了这个问题来跟踪它。
如建议的那样,在检查数据之前尝试使用 linq 查询过滤数据:cFile.Skip(1000)
cFile.Skip(1000)