Re: [Mono-list] moon light plugin

2011-11-04 Thread Stifu
The Mono team no longer works on Moonlight. So until community members pick it up, it's dead. blueridge wrote: > > When will the moonlight plug-in be up date to support more modern sites > > I tried to use www.ritzpix.com the plugin does not work > > Chip >> > > _

Re: [Mono-list] moon light plugin

2011-11-04 Thread Ian Norton
On Fri, Nov 04, 2011 at 08:37:38AM +, Stifu wrote: > The Mono team no longer works on Moonlight. So until community members pick > it up, it's dead. Oh, crap! I did get a short burst of work before the attachmate thing. I based moonbase ontop of moonlight from github earlier this year. Quite

Re: [Mono-list] Ubuntu 11.10 configuration problem

2011-11-04 Thread Ian Norton
It could be that your program is compiled for .net 4.0 but your mono doesnt support it. On Fri, Nov 04, 2011 at 12:29:58AM +, Matthew Fleming wrote: > Hi, > > I'm entirely new to mono so I'd really appreciate help with the following. > I am trying to run OpenVista CIS, which is supposed to ru

[Mono-list] Mono not catching this, VS does

2011-11-04 Thread Matt Calder
I don't know whether to call this a bug, but this code can result in an access of the List list, without assigning to it (in the case b is false): public static void Foo(bool b) { int i; List list; if (b && !dict.TryGetValue("foo", out list)) {

Re: [Mono-list] Mono not catching this, VS does

2011-11-04 Thread Andres G. Aragoneses
Please file a bug report in http://bugzilla.xamarin.com/ On 11/04/2011 02:02 PM, Matt Calder wrote: > I don't know whether to call this a bug, but this code can result in an > access of the List list, without assigning to it (in the case b is false): > > public static void Foo(bool b) >

Re: [Mono-list] Mono not catching this, VS does

2011-11-04 Thread Jonathan Chambers
I believe there is at least one bug for this error already: https://bugzilla.novell.com/show_bug.cgi?id=613713 Thanks, Jonathan On Fri, Nov 4, 2011 at 10:26 AM, Andres G. Aragoneses wrote: > > Please file a bug report in http://bugzilla.xamarin.com/ > > On 11/04/2011 02:02 PM, Matt Calder wrote