问题标签 [smartinspect]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - 使用位图时“无法访问已关闭的流”
我的代码在小型演示应用程序中运行良好,但是,当我在大型生产系统中运行它时,它会引发以下异常:
这是导致错误的 C# 代码:
.net - 如何在 SmartInspect 中创建视图?
我觉得这应该很简单,但我无法在任何地方找到如何在 SmartInspect 中创建新视图。我什至用谷歌搜索了它,但我所看到的任何地方都只是说可以创建多个视图,但没有一个说如何。(例如:http ://www.gurock.com/smartinspect/tour/4/ )
有谁知道怎么做?
c# - 在发布版本中省略代码
我在 .net 库中使用 smartinspect 来跟踪方法等。但是对于发布配置,我想避免部署 smartinspect 和跟踪代码内所有内容的开销。每次调用方法时,是否有一种简单的方法可以在不使用编译器指令的情况下实现这一点?
示例代码:
我的第一个想法是为 smartinspect 创建一个包装器,它要么调用 smartinspect,要么什么都不做,具体取决于发布配置。但这不会让我摆脱 try finally 构造。有没有更好的方法来解决这个问题?