1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 23:16:09 +00:00

Meilleure gestion filtres async

This commit is contained in:
Yan Maniez 2018-10-20 22:10:13 +02:00
parent f1a726e6b1
commit f9b6df738b
5 changed files with 99 additions and 99 deletions

View file

@ -35,7 +35,7 @@ namespace AideDeJeu.UWP
{
using (var outStream = new FileStream(path, FileMode.Create))
{
inStream.CopyTo(outStream);
await inStream.CopyToAsync(outStream);
}
}
}