I am looking at the code in a project that has recently joined it, and in a forms application for C # for .NET 3.5 . I found this:
public void foo()
{
EndPoint:
{
}
}
When I click "EndPoint / Go to Definition", it says "Cannot go to the endpoint", but the project as a whole is quite small and compiles / starts without errors, so this is not a missing link or something else.
What is EndPoint and what is this syntax with the name: {}?
source
share