
Hi,
we upgraded from version 24.1.4 to 25.1.0 and noticed a problem with the C# parser.
If there is a enum declaration that ends with a semicolon, the following types are not resolved correctly. Now the semicolon is optional but allowed nontheless. The problem still exists with 25.1.1.
Example:
public enum ColorsEnum
{
Red,
Green,
Blue
};
public class MyTestClass
{
public static void Test() // <- missing
{
}
}
Best regards, Tobias Lingemann.