I want to have a programming competition with a friend of mine in C# and the competition will be to write with the fewest number of C# tokens. I have seen C++ token counting programs around but is there one for C#? Or would there be something in System.Reflection? Additionally, if anyone has links to token counters for other languages, feel free to link them.

link|improve this question

2  
@RaYell - ?? Surely the counter is needed to work out who has won... – Justin Feb 16 '10 at 10:47
Correct, the person who has the fewest tokens wins, but nothing stops each having access to the counter as they write to give an idea of progress. – fneep Feb 16 '10 at 10:50
In the spirit of competition, why don't you start one with your friend to write the smallest token counting program? You should only have to do lexical analysis, that isn't hard. – Hans Passant Feb 16 '10 at 13:36
feedback

2 Answers

Irony (a C# parser) has a C# grammar (i'm not sure which version of C# it supports), and the grammar explorer tool that Irony comes with probably gives you a token count...

If it doesn't, im sure you could make it do so pretty easily (open source ftw)

link|improve this answer
feedback

Well I believe that technically anything in the Reflection namespaces won't be a token counter, as everything in Reflection deals with inspection of the IL, which may be optimised for example.

This wikipedia entry might help you however - List of C Sharp lexer generators

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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