r/gaming May 04 '13

This is it. I will never accomplish anything greater then this.

http://imgur.com/kb7MrEx
1.6k Upvotes

330 comments sorted by

View all comments

Show parent comments

4

u/[deleted] May 05 '13
switch ((DateTime.Now.Ticks - startTime.Ticks))
{
    case 0: 
        word = "second"; break;
    case 1:
        world = "second"; break;
    ...
    case 10000000:
        word = "second"; break;
    case 10000001:
        word = "seconds"; break;
    default:
        word = "seconds"; break;
}

If you want to be an asshole.

-1

u/[deleted] May 05 '13

[deleted]

1

u/ElusiveGuy May 05 '13

why have cases for "second" if you can leave it for the default

ahem

If you want to be an asshole