What is a simple Noop statement in C#, that doesn\'t require implementing a method? (Inline/Lambda methods are OK, though.)
My current use case: I want to occupy the c
Are you trying to debug a release (optimised) build? It is normally the optimiser that removes unreferenced variables and empty blocks.
Two solutions:
catch
itself and use $exception
– created by the debugger to reference the exception in flight – in the Locals tool window.