CodeIdentifiers.MakeRightCase(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.