CamelCaseParam() 공개 정적인 메소드

Sets the first character of the param to lower, if it's an acronym it lowers it all until the next word
public static CamelCaseParam ( string param ) : string
param string The name of the parameter name for the constructor
리턴 string
예제 #1
0
 public static string ToCamelCase(this string s)
 {
     return(GeneratorHelpers.CamelCaseParam(s));
 }
예제 #2
0
 public static string ToPascalCase(this string s)
 {
     return(GeneratorHelpers.CamelCaseParam(s, removeUnderscoresAndDashes: true).ToUpperFirstCharacter());
 }