Graham

Results 105 comments of Graham

@kathleenwest Thanks for reminder, I actually need to update some of the details of this issue. After your comment I've just investigated and discovered an issue in C# -> VB...

Ah I wasn't aware of that difference, thanks!

Yeah, good thinking, maybe a partial workaround would be a quick win. I'll see what I can do to move this forward in some way.

@kathleenwest I've just tried region statements within a VB method block and they appear to be valid now. Some sources online suggest that this works from VS2015 onwards, though I...

@kathleenwest oh dear, congratulations on the upgrade! ☺

Previously there was a general base piece of work this issue required to allow any of these to be worked on. That's done, but the specific cases still need work...

On Error Goto is hard enough to convert cleanly into a try catch. The "Resume Next" is even more problematic since it forces the code to [resume from the next...

The neatest solution I've thought of for `Resume Next` is: ```csharp for (int lineNumber = 1; lineNumber

Actually this would save us having to mess around with variable scopes EDIT: sadly the switch has to be at the start of the try block, and a loop is...

One thing that could be done in all cases, is to convert the code inside the block and place an error compiler directive showing the original code. That way it's...