CodeIdentifier.MakeCamel(String) Method

Definition

Produces a camel-case string from an input string.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 static System::String ^ MakeCamel(System::String ^ identifier);
public static string MakeCamel (string identifier);
static member MakeCamel : string -> string
Public Shared Function MakeCamel (identifier As String) As String

Parameters

identifier
String

The name of a code entity, such as a method parameter, typically taken from an XML element or attribute name.

Returns

A camel-case version of the parameter string.

Remarks

The MakeCamel method converts the initial character from an upper-case to lower-case letter, if necessary.

You do not need to call this method directly.

Applies to