C# Class YamlDotNet.Serialization.NamingConventions.CamelCaseNamingConvention

Convert the string with underscores (this_is_a_test) or hyphens (this-is-a-test) to camel case (thisIsATest). Camel case is the same as Pascal case, except the first letter is lowercase.
Inheritance: INamingConvention
显示文件 Open project: aaubry/YamlDotNet

Public Methods

Method Description
Apply ( string value ) : string

Method Details

Apply() public method

public Apply ( string value ) : string
value string
return string