In this version I add some new items: Pubblication Date and Category.
Download
Code
Release Notes
Visualizzazione post con etichetta c#. Mostra tutti i post
Visualizzazione post con etichetta c#. Mostra tutti i post
martedì 22 luglio 2008
lunedì 21 luglio 2008
RssC 1.30
In this new version, you can read more feed without restart the application.
Download
Code
Release Notes
Download
Code
Release Notes
Etichette:
c#,
code,
download,
feed rss,
release notes,
rss,
rss feed,
rss structure,
rssc,
rssc 1.30
mercoledì 2 luglio 2008
giovedì 19 giugno 2008
Download a file in C#
Do you want to download a file? This file is situated in Internet and you don't know how to do? .NET Framework helps you.
We make an example: the file that we want to download is: http://www.google.it/intl/it_it/images/logo.gif. This is an image, the Google's logo.
The code is this:
WebClient() client = new WebClient();
client.DownloadFile(@" http://www.google.it/intl/it_it/images/logo.gif", @"C:\logo.gif");
WebClient is a class situated in System.Net. The first parameter is the file's position. The second is the filename, where it saves the file on our hard disk.
It is very easy, no?
Etichette:
.NET,
c#,
code,
download,
download a file,
System.Net,
webclient
Iscriviti a:
Post (Atom)