If you want to write some code to download data a location specified by a URI, simply you can use the WebClient DownloadData and DownloadFile methods; this data can be either an array of bytes or a file. WebClient simplifies downloading of files and bytes in files, as these are common tasks when dealing with [...]
Popularity: 3% [?]
Obtaining the exported types in an assembly is useful when determining the public interface to that assembly. This ability can greatly aid in learning to use a new assembly or can aid the developer of that assembly in determining all access points to their assembly and seeing whether they are adequately secure from malicious code. [...]
Popularity: 2% [?]
Another Sponsored Post:
Are you tired to repeat your same work on your computer? Maybe like you need to edit a lot of photo to grayscale, or rename a thousand of files? Now, we want to talk about this Windows Application called Apis Ceratina, maybe can help you solve your problem. Let’s take a tour to [...]
Popularity: 2% [?]
If a file is opened within your application and the FileShare parameter of the FileStream.Open call is set to FileShare.ReadWrite or FileShare.Write, other code in your application can alter the contents of the file while you are using it. To handle file access with more granularity, use the Lock method on the FileStream object to [...]
Popularity: 4% [?]
Say we needed to drive the CMD.EXE application to display the current time with the TIME /T command (it is possible to just run this command from the command line, but this way we can demonstrate an alternative method to drive an application that responds to standard input). The way to do this is to [...]
Popularity: 2% [?]
Wow, this is an very interesting news. Microsoft is going to buy Yahoo? But is it going to happen? Well, there are several rumours or speculations behind this at the moment.
You will find some information at Reports: Microsoft Eyeing Deal to Buy Yahoo
“Microsoft Corp. has stepped up its pursuit of a deal to buy Yahoo [...]
Popularity: 2% [?]
There is always time to use a temporary file in the application. This file will exist only as long as the process that created it remains running.
Use the static GetTempPath and GetTempFileName methods on the Path class.
The Path class provides two methods for working with temporary files. The first is the static GetTempPath method, [...]
Popularity: 3% [?]
Microsoft just announced a new web development platform, Silverlight. What is Silverlight then? What can it do? Is it something really powerful? Here is the definition found from the official website. “Microsoft® Silverlight™ is a cross-browser, cross-platform plug-in for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. [...]
Popularity: 2% [?]