共用方式為


編譯器錯誤 CS0161

更新:2007 年 11 月

錯誤訊息

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

傳回值的方法必須在所有程式碼路徑中,具有 return 陳述式。如需詳細資訊,請參閱方法 (C# 程式設計手冊)

下列範例會產生 CS0161:

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