HomeCSharpC# Error CS0670 – Field cannot have void type

C# Error CS0670 – Field cannot have void type

C# Error

CS0670 – Field cannot have void type

Reason for the Error & Solution

Field cannot have void type

A field was declared to be of type .

The following sample generates CS0670:

// CS0670.cs  
class C  
{  
   void f;   // CS0670  
   // try the following line instead  
   // public int f;  
  
   public static void Main()  
   {  
      C myc = new C();  
      myc.f = 0;  
   }  
}  

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