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
Reliable solution
try { blablablablaStatemnt(); } catch(Exception ex) { #IF DEBUG Debugger.Break(); #END IF }
As simple as this!
Otherwise
can be very usefull;