HomeCSharpC# Error CS1547 – Keyword ‘void’ cannot be used in this context

C# Error CS1547 – Keyword ‘void’ cannot be used in this context

C# Error

CS1547 – Keyword ‘void’ cannot be used in this context

Reason for the Error & Solution

Keyword ‘void’ cannot be used in this context

The compiler detected an invalid use of the keyword.

The following sample generates CS1547:

// CS1547.cs  
public class MyClass  
{  
   void BadMethod()  
   {  
      void i;   // CS1547, cannot have variables of type void  
   }  
  
   public static void Main()  
   {  
   }  
}  

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