Hi,
I would like to count the number of goto statements in C# projects, but am unsure about their internal representation. As there is no explicit statement kind for goto, I expected it to be of StatementKind.OTHER. Yet, it seems like the whole GitHub dataset (September 2015) does not contain any statements of this kind for C# projects.
Among over 160,000 C# projects I expected at least some of them to use goto, even though it is considered harmful.
Does anyone have some advice how to identify goto statements? Or does the absence of 'other' statements really imply the absence of gotos?
Best regards,
Carina