vote up 2 vote down star
2

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 keywords. Can you think of a longer sequence of keywords?

Note: There's really no point to the question. I'm just hoping to pour more some fun on the fire :-)

flag
Isn't this more like "anti golf"? – Brian Rasmussen Mar 23 at 11:17
staatic override? – Marc Gravell Mar 23 at 11:19
hmm yes, static override - well to be honest, he didn't say the code had to compile... ;-) – Razzie Mar 23 at 11:20
Oh, but I wish it did compile! I'm merely lacking coffee and sleep :-) – scraimer Mar 23 at 11:23
anti-golf... hehe – Svish Mar 23 at 11:23
show 6 more comments

4 Answers

vote up 15 vote down check

For 6:

new protected internal unsafe virtual decimal Foo() {...}

Edit for 7:

new protected internal unsafe virtual extern decimal Foo();

If we allow brackets and braces...

(edited the "lock", "new object()", "as" and "string" were contributed by others; see comments)

decimal Bar() {
    lock (new object() as string) {
        if (true) {
            checked {
                unsafe {
                    try {
                        do {
                            return default(decimal);
                            unchecked {break;}
                            continue;
                        } while (false);
                    }
                    catch { throw; }
                    finally { }
                }
            }
        }
    }
}
link|flag
Awesome ! – scraimer Mar 23 at 11:24
if you are counting characters: new protected internal unsafe virtual extern string Foo(); – Andrew Robinson Mar 23 at 11:31
decimal would be better ;-p – Marc Gravell Mar 23 at 11:42
No using statement? :P – meandmycode Mar 23 at 11:46
1  
also, you could replace default(decimal) with (object)typeof(default(decimal)) for two cheap extra keywords. – Niki Mar 23 at 12:36
show 6 more comments
vote up 1 vote down
internal protected static volatile string foo = "bar";

That's 5.

link|flag
vote up 0 vote down

Can I cheat?

internal protected static volatile StringBuilder @string = 
  new StringBuilder(int.Parse("12"));

Using the fact that I can use a keyword or other reserved term as a variable name if I prepend it with an @ - comes in at 9 if you allow the duplication of StringBuilder.

link|flag
StringBuilder isn't a keyword, nor is Parse – Marc Gravell Mar 23 at 11:26
I never knew about the @ thing! But I don't think StringBuilder counts as a keyword. It's just a class, no? – scraimer Mar 23 at 11:26
Fair enough. Also I wasn't count Parse, but was double counting StringBuilder. – Zhaph - Ben Duguid Mar 23 at 12:48
vote up 13 vote down

I guess it's infinite:

return null as string as string as string as string as string....
link|flag
We have a winner! – Earwicker Mar 23 at 11:31
Pah; I'd prefer different terms... but I can't argue the truth of it... – Marc Gravell Mar 23 at 11:41
Would this affect the compiler? – Sander Versluys Mar 23 at 11:47
The number of different keywords is limited, so you can't produce an infinite chain without repetitions. But you can produce pretty long chains: return true is bool as object is int as string is byte as double... – Niki Mar 23 at 11:53
then you'd repeat 'is' and 'as' pretty many times though... – Svish Mar 23 at 11:54
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.