static string PascalCase(string s) { var x = CamelCase(s); return char.ToUpper(x[0]) + x.Substring(1); }