ServiceClientGenerator.StringExtensions.ToCamelCase C# (CSharp) Method

ToCamelCase() public static method

public static ToCamelCase ( this s ) : string
s this
return string
        public static string ToCamelCase(this string s)
        {
            return GeneratorHelpers.CamelCaseParam(s);
        }