Check out example codes for "c# capitalize first letter of each word in a string". It will help you in understanding the concepts better.
Code Example 1
string s = "THIS IS MY TEXT RIGHT NOW";
s = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(s.ToLower());
Code Example 2
string s = "THIS IS MY TEXT RIGHT NOW";
s = System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(s.ToLower());
Learn ReactJs, React Native from akashmittal.com