私はURIのコンテンツを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);
これは機能します。
質問: 行った変更を (webConfigText で) 保存するにはどうすればよいですか?
ありがとう、私は現在髪を引き裂いています。D