2.1 KiB
2.1 KiB
Class LanguageHelper
Namespace: CapyKit.Helpers
Assembly: CapyKit.dll
Helper class for handling text transformations.
public class LanguageHelper
Inheritance
Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Extension Methods
ObjectExtensions.UpdateProperties<LanguageHelper>(LanguageHelper, LanguageHelper), ObjectExtensions.UpdateProperties(object, object)
Methods
CamelCaseToHumanReadable(string)
Converts camel case text to human readable text.
public static string CamelCaseToHumanReadable(string value)
Parameters
value string
The value.
Returns
A string in human readable format.
Remarks
Camel case is a naming convention for identifiers in which the first letter of each word is capitalized.