如何在以下程序中调用GetDFT()
方法?
namespace Lott_CSC445_Project6
{
class Program
{
... // declarations removed for brevity
static void Main(string[] args)
{
... // some code
GetDFT() // <<< Call the method here
... // more code
}
public void GetDFT()
{
... // method body removed for brevity
}
}
}
答案 0 :(得分:2)
该方法不是static
,因此它是Program
的实例方法。
这意味着你需要一个Program
的实例来调用它。
或者,制作方法static
。