views:

467

answers:

4

I am using CodeDom to generate dynamic code based on user values. One of those values controls what the name of the class I'm generating is. I know I could sterilize the name based on language rules about valid class names using regular expressions, but I'd like to know if there is a specific method built into the framework to validate and/or sterilize a class name.

+2  A: 

I found an answer to my question. I can call

CodeCompiler.ValidateIdentifiers(class1);

where class1 is a CodeObject to validate all identifiers in that CodeDom tree and below. So I can call this right after I create my CodeTypeDeclaration class1 to validate just the class name, or I can build up my CodeDom and then call this at the end to validate all the identifiers in my tree. Just what I needed!

Zach
+3  A: 

Use the "CreateValidIdentifier" method on the CSharpCodeProvider class.

CSharpCodeProvider codeProvider = new CSharpCodeProvider(); 
string sFixedName = codeProvider.CreateValidIdentifier( "somePossiblyInvalidName" ); 
CodeTypeDeclaration codeType = new CodeTypeDeclaration( sFixedName );

It returns a valid name given some input. If you just want to validate the name and not fix it, compare the input and output. It won't alter valid input so the output will be equivalent.

Jason Diller
All this does is to rename an identifier if it conflicts with a reserved word. It does not create a valid identifier if the passed in value has invalid characters in it. So this is helpful, but not everything that needs to happen before you can create the new codetype.
Zach
+3  A: 

An easy way to determine if a string is a valid identifier for a class or variable is to call the static method

System.CodeDom.Compiler.CodeGenerator.IsValidLanguageIndependentIdentifier(string value)
Micah
A: 
public static bool IsReservedKeyWord(string identifier)
        {
            Microsoft.CSharp.CSharpCodeProvider csharpProvider = new Microsoft.CSharp.CSharpCodeProvider();
            return csharpProvider.IsValidIdentifier(identifier);
        }