Re: [mono-android] Android Download Text File from WWW

2013-01-10 Thread Jonathan Pryor
On Jan 10, 2013, at 8:55 PM, Canning wrote: > Here is my code: > >try >{ >URL url = new URL("mysite.com/thefile.txt"); > >BufferedReader in = new BufferedReader(new > InputStreamReader(url.openStream())); `in` is a C# keyword, and thus can't be used to

[mono-android] Android Download Text File from WWW

2013-01-10 Thread Canning
I am using MonoDevelop for Android and would like some help to download a text file off the internet. Here is my code: try { URL url = new URL("mysite.com/thefile.txt"); BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));