영어로 읽기

다음을 통해 공유


컴파일러 오류 CS1525

잘못된 식 용어 'term'

컴파일러가 식에서 잘못된 용어를 발견했습니다. 이 오류는 예상되는 식이 누락되어 후속 토큰이 식으로 잘못 구문 분석되거나 식 내에서 유효하지 않은 구문이 사용되어 발생할 수 있습니다. 일반적인 근본 원인에는 일치하지 않는 토큰, 세미콜론 누락 또는 과도한 구분 기호가 포함됩니다.

다음 샘플에서는 CS1525를 생성합니다.

C#
// CS1525.cs
class MyClass
{
    public static void Method(int number) {}

    public static void Main()
    {
        int i = 0;
        i = i + 'c' + 1 + (2);   // OK
        i = i + void + throw;    // CS1525, these keywords are not valid in this expression

        Method(123,);            // CS1525, excess trailing comma

        goto EmptyLabel;
        EmptyLabel:              // CS1525, empty label
        // Add something here to resolve the error, for example:
        // System.Console.WriteLine("Hello!");
    }
}