-4

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

1 回答 1

2

该方法不是static,所以它是一个实例方法Program

这意味着您需要一个实例Program来调用它。

或者,制作方法static

于 2013-03-09T19:40:40.380 回答