HI,
I am in the process of developing a generic tool (Code Checker) in .net framework 2.0. The application will check the input file whether it has followed the mentioned coding standard (Method name, variable names should be wither in camel casing or pascal casing) guidelines. Can any one explain me how to get or identify user defined method names from a file given as input.
Short description
The application will get a file (vb or cs) as input and will look for the coding standard which should be checked (available in the config file). The application should read the file and identify the public methods with events, user defined methods, variables and constants.
The application will parse the text file and give a detailed report to the end user showing the lines which have voilated the coding standard rules (comapring the method names using string comaprison with case sensitive option)
Also can any one give me some inputs on how to develop this solution. If this tool is developed then it will save enormous time to the developers on checking the coding standards before submitting their code to the clients or for auditing