public string UPPERCASE_FIRSTCHAR(string source)
{
string result = "";
try
{
result = source;
if (!string.IsNullOrEmpty(source))
source=System.Threading.Thread.CurrentThread.CurrentCulture.TextInfo.ToTitleCase(source.ToLower());
}
catch (Exception ex)
{
throw ex;
}
return source;
}
2 comments:
how is it possible ?
How is it possible?
Post a Comment