I have a string which I read in from :
TextReader tr = new StreamReader(this.dataPath ); string contents = tr.ReadToEnd();
The value of co
Try
contents = contents.Replace(xmlString,xmlString + styleSheet );
This is because the String class is immutable.