private void ReplaceAccents(ref string input)
{
input = Regex.Replace(input, @"[\xC0-\xC5\xE0-\xE5]", "a"); //Replace with "a"
...
private void ReplaceAccents(ref string input)
{
input = Regex.Replace(input, @"[\xC0-\xC5\xE0-\xE5]", "a"); //Replace with "a"
...
I need to strip out things ...