Determines if the identifier is valid to be used. This will not check for duplicates, but rather ensure that the identifier is not a reserved word, keyword, or other illegal identifier.
[Visual Basic] Function IsValidIdentifier( _ ByVal identifier As String _ ) As Boolean [C#] bool IsValidIdentifier( string identifier ); [C++] bool IsValidIdentifier( String* identifier ) = 0; [JScript] function IsValidIdentifier( identifier : String ) : Boolean;
ICodeSourceFile Interface | ICodeSourceFile Members | System.ComponentModel.Design.CodeModel Namespace