tags:

views:

63

answers:

3

I'm trying to check the validity of a particular 'stand-alone' code file from within my C#.Net app. Is there any way that I can check the file and get a visual studio's style errors list out?

I'm only interested in running a basic check to ensure that the basics would validate. I.e. all variables are declared and method names are valid.

Is this at all possible?

+1  A: 

Call the C# command line compiler (csc.exe)?

RichardOD
A: 

You can use static code analysis. There are a few libraries that enable this. The one that cones to mind immediately is StyleCop. It is written in .NET so you should be able to reference and use it through code if that is what you are looking for.

Anderson Imes
I didnt interpret the question as meaning this, but I can see now how it could!
RichardOD
Doesn't style cop just enforce coding rules?
GenericTypeTea
+3  A: 

If it's not the same as the referred to question (see my comment), you mention "VS style errors", consider using the CSharpCodeProvider. An example of its usage is in its documentation at MSDN.

Abel
Exactly what I was after, thank you.
GenericTypeTea