anti-golf

What is the longest legal statement block you can make with only C# keywords?

I was writing some code in C#, and I found myself writing: return new MyClass(... when I noticed that both the return and the new were both C# keywords. So I wondered what is the longest legal sequence of keywords in C#. All I could think of is: internal static override void MyFunc(... Where internal static override void are all ke...

Anti-golf on "Hello World"?

Contrary to the popular code-golf challenges which demonstrate the genius of many regulars here, I'd like to see that genius illustrated in an antithetical fashion. The challenge is to successfully perform "Hello World" with special focus on over-complicating matters. Not verbosity, not obscurity, just pure sloppiness/over-complication....