Tag: download

WP8.1 Dev Guide – Download and Install Windows Phone 8.1 SDK

To get started with the development of windows phone 8.1 apps , the developers should have the Windows Phone 8.1 SDK installed on their system . You can download Visual Studio Express 2013 for Windows , a free tool that lets the developers to create Windows Phone and Windows Store apps, including universal Windows apps targeting all the Windows devices. The tools include the necessary…

Recommended Books to Learn Angular 2

There are plenty of resources and books available online to learn Angular 2 and TypeScript. Apart from the online resources Angular 2 eBooks and Physical copy of the books too add to a greater learning experience. Here are some of the books which are useful in learning Angular 2 and TypeScript. Recommended Books for Learning Angular 2 and TypeScript Angular 2 Development with TypeScript Angular…

Popular Web Browsers for Windows Users

Most of the users using Linux , Windows or Mac might be aware of Mozilla Firefox , Google Chrome , Opera , Safari and Internet Explorer . What are the other possible browsers that are available for the users using Windows 10 ? Popular Web Browsers for Windows Users In this blog post , we list out some of the popular web browsers that are…

How to Download Map in Windows Phone 8 Programatically using C#?

The Windows Phone 8 SDK provides the MapDownloadTask which lets the users to download the region map which can be used for offline usage. This will launch the Map Download App which lets the users to select the map which needs to be downloaded. How to Download Map in Windows Phone 8 Programatically using C#? Below is a sample code snippet demonstrating how the user…

How to Download Web Content asynchronously in C# ?

In one of the previous article , we demonstrated on how to download Web Content asynchronously in C# . This article will demonstrate how to do it asynchronously. How to Download Web Content asynchronously in C# ? The output file is generally saved in the same folder where the exe exists.

How to download a file from a URL using C#?

You can use the WebClient class in C# to download a file. How to download a file from a URL using C#? Here’s a code snippet demonstrating how you can download a file using the instance of the WebClient class in C#.

How to Download Web Content synchronously in C# ?

If you need to download the web content synchronously using C# , you can use the WebClient class that is defined in the System.Net namespace. Below is a sample code snippet demonstrating how to download web content synchronously in c#. How to Download Web Content synchronously in C# ? The output file is generally saved in the same folder where the exe exists.