https://bugzilla.novell.com/show_bug.cgi?id=690357

https://bugzilla.novell.com/show_bug.cgi?id=690357#c4


Geoff Norton <gnor...@novell.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|mono-bugs@lists.ximian.com  |gonz...@novell.com

--- Comment #4 from Geoff Norton <gnor...@novell.com> 2011-04-28 21:20:01 UTC 
---
gonzalo,

  Could you please look at this?  I can repo this on mono-2.10 for OSX.

Desktop repo:


using System;
using System.IO;
using System.Threading;
using System.Net;
using System.Collections.Generic;
using System.Linq;

namespace iOSTest
{
    public class Application
    {   
        static void Main (string[] args)
        {   
            Thread t = new Thread (delegate () {
                int i = 0;
                while (true) {
                    WebClient wc = new WebClient (); 
                    wc.DownloadFile(new
Uri("http:www.wildsau.net/image.axd?picture=2011%2f4%2fDSC05178.JPG"),
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal),
"test.jpg"));
                    Console.WriteLine (i++);
                }   
            }); 

            t.Start (); 

            Thread.Sleep (-1);
        }   
    }   
}

-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to