For a college project i have to create a tool that check the validity of the c# code. Validity means checking whether all the variables are following camel case or checking whether the class names are start with a upper case letter and so on. The rules that must follow can be varied. The biggest problem i have is to retrieve details like class names, method names, their properties and their line numbers from the source code. So I came up with following solutions,
- Using a language parser(like COCO/R or ANTLR)
- Using regular expressions
- By coding according to C# grammer file... Just if else and so on...
- Reflection API - Hope this won't work
What is the best method to do this.. or are there any alternative?
Thank You..
I personally would go with ANTLR for the following reasons:
Of course ANTLR will require some learning and you may need to spend a day or two playing with it. If you don't know ANTLR and you don't have much time you could try to hack the task using some regexs and C#/Java/etc. code.