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('.', '_')) }));
 }