Check out example codes for "sconvert string to title case + C3". It will help you in understanding the concepts better.
Code Example 1
public string ConvertStringToTitleCase(string text)
{
CultureInfo cultureInfo = Thread.CurrentThread.CurrentCulture;
TextInfo textInfo = cultureInfo.TextInfo;
return textInfo.ToTitleCase(text);
}
Learn ReactJs, React Native from akashmittal.com