HomeCSharpC# Error CS1733 – Expected expression

C# Error CS1733 – Expected expression

C# Error

CS1733 – Expected expression

Reason for the Error & Solution

Expected expression.

This error is produced whenever the compiler is expecting an expression on the line where the error occurred. In the following example, the trailing comma in the initializer indicates to the compiler that another expression will follow.

To correct this error

  • Provide the missing expression.

  • Remove the tokens that are causing the compiler to expect an expression.

Example

The following example produces CS1733 because of the trailing comma:

// cs1733.cs  
using System.Collections.Generic;  
public class Test  
{  
    public static void Main()  
    {  
        List<int> list = new List<int>() {{ 1, 2, }};// CS1733  
    }
}  

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