我在控制台应用程序中有以下内容:
class Program {
static void Main(string[] args) {
Program myProgram = new Program();
if (myProgram.foo() == true) {
myProgram.bar();
}
}
public bool foo() {
//check some stuff
}
public void bar() {
//do some stuff
}
}
在 Program 的 Main 方法中创建 Program 的实例是不好的做法并且容易出现问题吗?