public static string ReplaceCharacterInString(string value, string oldValue, string newValue)
{
return value.Replace(oldValue, newValue);
}
public static string ReplaceUnderscoreWithWhiteSpace(string value)
{
string temp = value.Replace("_", " ");
return temp;
}
{
return value.Replace(oldValue, newValue);
}
public static string ReplaceUnderscoreWithWhiteSpace(string value)
{
string temp = value.Replace("_", " ");
return temp;
}



No comments:
Post a Comment