问个关于静态函数调用非静态函数问题
我定义一个static函数Dataporal_Ftech()和一个非静态函数Ftech().
现在我想在Dataporal_Ftech()中调用Ftech(),知道这是不能的,问题是有没个办法能调用Fetch()且让他不是静态函数...
谢谢回复...
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
public static void show()
{
new Program().display();
}
public void display()
{
Console.WriteLine("hello");
}
static void Main(string[] args)
{
Program.show();
}
}
}