c#Form里面怎么写一个方法并且调用它?
类里面,方法外面定义
private void test()
{
Console.Writeline("test");
}
test(); //这里就可以调用了