Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Webサイトからxmlファイルを取得してPCに保存するにはどうすればよいですか。C#で簡単な方法は何ですか?
.NETライブラリのWebClientを使用します。
WebClient Client = new WebClient(); Client.DownloadFile("http://foo.bar", @"C:\filename.xml");