我将如何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
}
}
}