Bilješka
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati da se prijavite ili promijenite direktorije.
Pristup ovoj stranici zahtijeva provjeru vjerodostojnosti. Možete pokušati promijeniti direktorije.
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.
Provide the missing expression.
Remove the tokens that are causing the compiler to expect an expression.
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
}
}
.NET povratne informacije
.NET je projekat otvorenog koda. Odaberite vezu za pružanje povratnih informacija: