StringExtensions.ToCamelCase method

Version 1.1.28
.NET Framework 4.8
Namespace Skybrud.Essentials.Strings.Extensions
Assembly Skybrud.Essentials.dll

ToCamelCase(string)

Extension method

Converts the specified str to camel case (also referred to as lower camel casing).

public static string ToCamelCase(this string str)

Parameters

str String

The string to be converted.

Returns

The camel cased string.

ToCamelCase(Enum)

Extension method

Converts the name of the specified enum value to a camel cased string.

public static string ToCamelCase(this Enum value)

Parameters

value Enum

The enum value to be converted.

Returns

The camel cased string.