ToLowerCamelCase() public static method

public static ToLowerCamelCase ( string value ) : string
value string
return string
Ejemplo n.º 1
0
 private static string GetAccurateCase(ItemStorageConfig config, string value)
 {
     return(config.LowerCamelCaseProperties ? Utils.ToLowerCamelCase(value) : value);
 }