HomeCSharpC# Error CS1105 – Extension method must be static

C# Error CS1105 – Extension method must be static

C# Error

CS1105 – Extension method must be static

Reason for the Error & Solution

Extension methods must be static.

Extension methods must be declared as static methods in a non-generic static class.

Example

The following example generates CS1105 because Test is not static:

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

Leave a Reply

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...