58 lines
2.1 KiB
Markdown
58 lines
2.1 KiB
Markdown
# <a id="CapyKit_Helpers_LanguageHelper"></a> Class LanguageHelper
|
|
|
|
Namespace: [CapyKit.Helpers](CapyKit.Helpers.md)
|
|
Assembly: CapyKit.dll
|
|
|
|
Helper class for handling text transformations.
|
|
|
|
```csharp
|
|
public class LanguageHelper
|
|
```
|
|
|
|
#### Inheritance
|
|
|
|
[object](https://learn.microsoft.com/dotnet/api/system.object) ←
|
|
[LanguageHelper](CapyKit.Helpers.LanguageHelper.md)
|
|
|
|
#### Inherited Members
|
|
|
|
[object.Equals\(object?\)](https://learn.microsoft.com/dotnet/api/system.object.equals\#system\-object\-equals\(system\-object\)),
|
|
[object.Equals\(object?, object?\)](https://learn.microsoft.com/dotnet/api/system.object.equals\#system\-object\-equals\(system\-object\-system\-object\)),
|
|
[object.GetHashCode\(\)](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
|
|
[object.GetType\(\)](https://learn.microsoft.com/dotnet/api/system.object.gettype),
|
|
[object.MemberwiseClone\(\)](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone),
|
|
[object.ReferenceEquals\(object?, object?\)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
|
|
[object.ToString\(\)](https://learn.microsoft.com/dotnet/api/system.object.tostring)
|
|
|
|
#### Extension Methods
|
|
|
|
[ObjectExtensions.UpdateProperties<LanguageHelper\>\(LanguageHelper, LanguageHelper\)](CapyKit.Extensions.ObjectExtensions.md\#CapyKit\_Extensions\_ObjectExtensions\_UpdateProperties\_\_1\_\_\_0\_\_\_0\_),
|
|
[ObjectExtensions.UpdateProperties\(object, object\)](CapyKit.Extensions.ObjectExtensions.md\#CapyKit\_Extensions\_ObjectExtensions\_UpdateProperties\_System\_Object\_System\_Object\_)
|
|
|
|
## Methods
|
|
|
|
### <a id="CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable_System_String_"></a> CamelCaseToHumanReadable\(string\)
|
|
|
|
Converts camel case text to human readable text.
|
|
|
|
```csharp
|
|
public static string CamelCaseToHumanReadable(string value)
|
|
```
|
|
|
|
#### Parameters
|
|
|
|
`value` [string](https://learn.microsoft.com/dotnet/api/system.string)
|
|
|
|
The value.
|
|
|
|
#### Returns
|
|
|
|
[string](https://learn.microsoft.com/dotnet/api/system.string)
|
|
|
|
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.
|
|
|