I have this code which gets a uri's content into a MemorySream:
MemoryStream ms = new MemoryStream();
SvnTarget target = new SvnUriTarget(new Uri(webConfigUri));
client.Write(target, ms);
string webConfigText = Encoding.ASCII.GetString(bms.ToArray());
webConfigText = webConfigText.Replace(oldLine, newLine);
This works.
Question: How do I now save the changes (in webConfigText) I've made?
Thanks, I'm currently tearing my hair out. D