ToLowerCamelCase() public static method

public static ToLowerCamelCase ( string value ) : string
value string
return string
示例#1
0
 private static string GetAccurateCase(ItemStorageConfig config, string value)
 {
     return(config.LowerCamelCaseProperties ? Utils.ToLowerCamelCase(value) : value);
 }