// NetworkWebClient.cpp : メイン プロジェクト ファイルです。 #include "stdafx.h" using namespace System; using namespace System::Net; int main(array ^args) { String^ URI = "http://www.woodensoldier.info/images/WsLogoLarge.gif"; String^ path = "C:\\Downloads\\ws.gif"; WebClient^ client = gcnew WebClient(); client->DownloadFile(URI, path); return 0; }