MakeValidInternal() static private méthode

static private MakeValidInternal ( string identifier ) : string
identifier string
Résultat string
Exemple #1
0
 private string GenerateVariableName(string prefix, string fullName)
 {
     this.nextReflectionVariableNumber++;
     return(string.Concat(new object[] { prefix, this.nextReflectionVariableNumber, "_", CodeIdentifier.MakeValidInternal(fullName.Replace('.', '_')) }));
 }