CodeIdentifier.MakeCamel(String) 方法

定义

从输入字符串生成 camel 大小写字符串。

此 API 支持产品基础结构,不能在代码中直接使用。

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

参数

identifier
String

代码实体的名称(如方法参数)通常取自 XML 元素或属性名称。

返回

参数字符串的 camel 大小写版本。

注解

如有必要,该方法 MakeCamel 将初始字符从大写字母转换为小写字母。

无需直接调用此方法。

适用于