Tagged Questions

11
votes
4answers
803 views

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 ...