I was writing some code in C#, and I found myself writing:
return new MyClass(...
when I noticed that both the return and the
return
One more variant with method definition (found by my colleague):
protected internal override sealed unsafe async void await() { ... }
Makes 8 keywords in a row. Uses the fact that await is a contextual keyword, so it can be reused for method name.
await