CodeIdentifiers.MakeRightCase(String) Method

Definition

Ensures that the input is of the correct case by modifying the name according to the value of the UseCamelCasing property.

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

public:
 System::String ^ MakeRightCase(System::String ^ identifier);
public string MakeRightCase (string identifier);
member this.MakeRightCase : string -> string
Public Function MakeRightCase (identifier As String) As String

Parameters

identifier
String

The name to possibly modify.

Returns

A string that is the same as the input identifier or has the first letter's case modified.

Remarks

If the value of the UseCamelCasing property is true and the first character of the input is a letter, it is made lowercase, if necessary. If the value of the UseCamelCasing is false, Pascal case is in effect and the first character, if a letter, is capitalized, if necessary.

Applies to