从Main()调用公共方法

时间:2013-03-09 19:38:25

标签: c# methods console

如何在以下程序中调用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
        }    
    }
}

1 个答案:

答案 0 :(得分:2)

该方法不是static,因此它是Program实例方法。

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

或者,制作方法static