HomeCSharpC# Error CS1100 – Method ‘{0}’ has a parameter modifier ‘this’ which is not on the first parameter

C# Error CS1100 – Method ‘{0}’ has a parameter modifier ‘this’ which is not on the first parameter

C# Error

CS1100 – Method ‘{0}’ has a parameter modifier ‘this’ which is not on the first parameter

Reason for the Error & Solution

Method ‘name’ has a parameter modifier ‘this’ which is not on the first parameter.

The this modifier is allowed only on the first parameter of a method, which indicates to the compiler that the method is an extension method.

To correct this error

  1. Remove the this modifier from all except the first parameter of the method.

Example

The following code generates CS1100 because a this parameter is modifying the second parameter:

// cs1100.cs  
static class Test  
{  
    static void ExtMethod(int i, this Test c) // CS1100  
    {  
    }  
}  

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...