String Cleanup

Here's a handy string cleansing class to get rid of the invalid characters before sending them to your xml file. I got a little creative naming the Hashtable.

Code:
string cleanString = BytesSite.StringHelp.ValidString(possibleBadString);

-----------------------------------------------------------------------------------------------------------

using System;
using
...