这真的是在测试“没有愚蠢的问题”
这是console代码:
class Program {
static void Main(string[] args) {
myClass cl = new myClass();
cl.myMethod("world");
Console.WriteLine("press [enter] to exit");
Console.ReadLine();
}
}
public class myClass {
public void myMethod(string x) {
Console.WriteLine("hello {0}", x);
}
}
如果我按下F10并踩进去Main然后一直按下F10它为什么不踩进去myClass?
我可以更改我的设置以使其进入其他被调用的类吗?