pascalabcnet/InstallerSamples/NETLibraries/System.Parallel/Parallel1.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
274 B
ObjectPascal

Uses System,System.Net,System.Threading.Tasks;
begin
Parallel.Invoke (
procedure -> begin (new WebClient()).DownloadFile ('http://yandex.ru', 'yandex.html') end,
procedure -> begin (new WebClient()).DownloadFile ('http://pascalabc.net', 'pabc.html') end
);
end.