私はこのxmlファイルを持っています:http://www.studiovincent.net/list.xml
他のxmlファイルのコンテンツ全体をコピーする必要があります。
私はこのコードを試しました:
string sourcefile = "http://www.studiovincent.net/list.xml";
string destinationfile = "test.xml";
System.IO.File.Copy(sourcefile, destinationfile);
しかし、このエラーが発生するため、機能しません。URI形式はサポートされていません。
どうすればこの問題を解決できますか?