The latest build of this product (v25.1.2) was released 9 days ago,
which was before this thread was created.
Posted 2 days ago
by Tobias Lingemann
-
Software Devolpment Engineer,
Vector Informatik GmbH
Version: 25.1.2
Platform: .NET 8
Environment: Windows 11 (64-bit)
Hi,
we noticed a problem with the C# parser when the keyword "record" is used as a variable name. The C# compiler does not seem to have an issue with this. But here this causes two issues. Firstly the outlining node ends abruptly at the keyword. Secondly the following methods are sometimes missing in the AST. Since we use the AST to generate files, these methods are then missing. Example:
public class test
{
public static void a()
{
var record = "";
record += "";
}
public static void b()
{
}
}Best regards, Tobias Lingemann.