方法必须具有返回类型

时间:2015-03-14 10:40:11

标签: c# function methods

有人能帮助我吗?我试图公开这个函数,C#告诉我需要一个返回类型。非常感谢任何帮助。

static public KeepGoing()

1 个答案:

答案 0 :(得分:0)

您始终希望将返回值放在访问修饰符之后。 如果该方法是静态的,则将其放在static关键字后面。

// returns nothing 
public void KeepGoing() { }

// returns a string
public string KeepGoing()
{
    return "Keep going!";
}

// returns a number
public int KeepGoing()
{
    return 3;
}

// static method that returns a string
public static string KeepGoing()
{
    return "This is static!";
}