我有一个班级
public class MyClass{
public string MyFirstProperty { get; set; } = "Hello";
public string MySecondProperty { get; set; } = "There";
}
然后我调用一个方法,将此类实例化为参数
var result = MyMethod(new MyClass());
当我调试并按F11
以便进入该方法时,它实际上会进入设置这些属性的类实例化。 Visual Studio中是否有任何设置允许我自动跳过此步骤?
在工具中 - >选项 - >调试 - >一般情况下,我已将Step over property evaluation and other implicit function calls
设置为true,Enable property evaluation and other implicit function calls
设置为false。
答案 0 :(得分:0)
你需要的只是点击 F10 而不是用于踩踏的 F11 。
Step Into, Step Over, Step Out Commands (Debug Menu)
或者您可以使用 F11 => Shift + F11 => F11 正如@Alex建议的那样。