public static string ConvertTextIntoSentanceCase(string strValue)
{
if(string.IsNullOrEmpty(strValue)) return string.Empty;
return new System.Globalization.CultureInfo("en").TextInfo.ToTitleCase(strValue.ToLower());
}
Difference between Rollup and Cube
14 years ago
No comments:
Post a Comment