閱讀英文

共用方式為


編譯器錯誤 CS0766

部分方法必須有 void 傳回類型。

部分方法無法傳回值。 它的傳回類型必須是 void。

更正這個錯誤

  1. 指定部分方法的 void 傳回類型,或將方法轉換成一般 (非部分) 方法。

範例

下列範例會產生 CS0766:

// cs0766.cs  
using System;  
  
    public partial class C  
    {  
        partial int Part(); // CS0766  
  
        // Typically the implementing declaration  
        // is contained in a separate file.  
        partial int Part() //CS0766  
        {  
        }  
  
        public static int Main()  
        {  
            return 1;  
        }  
  
    }  

另請參閱