I have a string which I read in from :
TextReader tr = new StreamReader(this.dataPath ); string contents = tr.ReadToEnd();
The value of co
The Replace() method returns a new string object, so you'll have to change your code to:
content = contents.Replace(xmlString,xmlString + styleSheet );