using System.Collections.Generic;
using System.Threading.Tasks;
private string FixCase(string text)
string[] components = text.Split('_');
IEnumerable<string> newComponents = components.Skip(1);
return components.First() + string.Join("", from string name in newComponents
select System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(name));
string FixedCase = FixCase("hi_guys_how_are_you Hi guys");
Console.WriteLine(FixedCase);