File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
40
40
* [ 20 Minesweeper] ( #20 )
41
41
* [ 21 Connect Four] ( #21 )
42
42
* [ 22 BMI Calculator] ( #22 )
43
+ * [ 23 Image Downloader] ( #23 )
43
44
44
45
## Bonuses
45
46
@@ -48,8 +49,8 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
48
49
## Progress
49
50
50
51
All - ** 100** <br >
51
- Done - ** 22 ** <br >
52
- Remain - ** 78 ** <br >
52
+ Done - ** 23 ** <br >
53
+ Remain - ** 77 ** <br >
53
54
54
55
* <a name =" 00 " >00</a > Name Generator - 29.01.2018 * Done* (` Python 3 ` ) <br >
55
56
![ 00] ( docs/images/00.png )
@@ -109,6 +110,16 @@ Maybe some day?
109
110
![ 21] ( docs/images/21.png )
110
111
* <a name =" 22 " >22</a > BMI Calculator - 28.08.2018 * Done* (` Rust ` )<br >
111
112
![ 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
+
112
123
113
124
## Bonus
114
125
You can’t perform that action at this time.
0 commit comments