hi guys! Is the code below is the right implementation of String.Replace?
Code:
            SearchString = TxtSettingsUserSearch.Text;
            SearchString.Replace("*", "%");
            MessageBox.Show("SearchString: " + SearchString);
If not, can you please help on how to replace * to %. Thanks in advance!