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
If you really want noop, then this defines a nameless action that doesn't do anything, and then invokes it, causing nothing to happen:
((Action)(() => { }))();