MakeValidInternal() статический приватный Метод

static private MakeValidInternal ( string identifier ) : string
identifier string
Результат string
Пример #1
0
 private string GenerateVariableName(string prefix, string fullName)
 {
     this.nextReflectionVariableNumber++;
     return(string.Concat(new object[] { prefix, this.nextReflectionVariableNumber, "_", CodeIdentifier.MakeValidInternal(fullName.Replace('.', '_')) }));
 }