Skip to content

Commit c517609

Browse files
committed
Image downloader
1 parent 48fd714 commit c517609

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
4040
* [20 Minesweeper](#20)
4141
* [21 Connect Four](#21)
4242
* [22 BMI Calculator](#22)
43+
* [23 Image Downloader](#23)
4344

4445
## Bonuses
4546

@@ -48,8 +49,8 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
4849
## Progress
4950

5051
All - **100** <br>
51-
Done - **22** <br>
52-
Remain - **78** <br>
52+
Done - **23** <br>
53+
Remain - **77** <br>
5354

5455
* <a name="00">00</a> Name Generator - 29.01.2018 *Done* (`Python 3`) <br>
5556
![00](docs/images/00.png)
@@ -109,6 +110,16 @@ Maybe some day?
109110
![21](docs/images/21.png)
110111
* <a name="22">22</a> BMI Calculator - 28.08.2018 *Done* (`Rust`)<br>
111112
![22](docs/images/22.png)
113+
* <a name="23">23</a> Image Downloader - 28.08.2018 *Done* (`C#`)<br>
114+
Since it's either too easy or too boring I've managed to make this as simple as that:
115+
116+
```csharp
117+
using(WebClient client = new WebClient())
118+
{
119+
client.DownloadFile("http://www.example.com/image.jpg", localFilename);
120+
}
121+
```
122+
112123

113124
## Bonus
114125

0 commit comments

Comments
 (0)