閱讀英文

共用方式為


編譯器錯誤 CS1105

擴充方法必須為靜態。

擴充方法必須宣告為非泛型靜態類別中的靜態方法。

範例

下列範例會產生 CS1105,因為 Test 不是靜態的:

// cs1105.cs  
// Compile with: /target:library  
public class Extensions  
{  
  
    // Single type parameter.  
        public void Test<T>(this System.String s) {} //CS1105  
  
}  

另請參閱