Calculation Helper

This commit is contained in:
Jordan Wages 2024-04-22 21:27:51 -05:00
commit a30e502bc4
26 changed files with 873 additions and 3 deletions

View file

@ -7,11 +7,18 @@ using System.Threading.Tasks;
namespace CapyKit.Helpers
{
/// <summary>
/// Helper class for handling text transformations.
/// </summary>
public class LanguageHelper
{
#region Methods
/// <summary> Converts camel case text to human readable text. </summary>
/// <remarks>
/// Camel case is a naming convention for identifiers in which the first letter of each word is
/// capitalized.
/// </remarks>
/// <param name="value"> The value. </param>
/// <returns> A string in human readable format. </returns>
public static string CamelCaseToHumanReadable(string value)