HomeCSharpC# Error CS1511 – Keyword ‘base’ is not available in a static method

C# Error CS1511 – Keyword ‘base’ is not available in a static method

C# Error

CS1511 – Keyword ‘base’ is not available in a static method

Reason for the Error & Solution

Keyword ‘base’ is not available in a static method

The keyword was used in a method. base can only be called in an instance constructor, instance method, or instance accessor.

Example

The following sample generates CS1511.

// CS1511.cs  
// compile with: /target:library  
public class A  
{  
   public int j = 0;  
}  
  
class C : A  
{  
   public void Method()  
   {  
      base.j = 3;   // base allowed here  
   }  
  
   public static int StaticMethod()  
   {  
      base.j = 3;   // CS1511  
      return 1;  
   }  
}  

Leave A Reply

Your email address will not be published. Required fields are marked *

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