閱讀英文

共用方式為


編譯器錯誤 CS0161

'method': 部分程式碼路徑並未傳回值

在所有程式碼路徑中,傳回值的方法必須有 return 陳述式。 如需詳細資訊,請參閱方法

範例

下列範例會產生 CS0161:

C#
// CS0161.cs
public class Test
{
    public static int Main() // CS0161
    {
        int i = 5;
        if (i < 10)
        {
            return i;
        }
        else
        {
            // Uncomment the following line to resolve.
            // return 1;  
        }
    }
}