Re: [Mono-dev] How do I develop mono/C# applications for the AppleiPhone?

2009-02-27 Thread Mariner, David
Hi Daniel, Firstly, I'll only talk about the authorized development scene for the device. If you don't already know or can't find out about alternate methods, then you'll probably have little success with them if I pointed you in their direction. Firstly you're going to need to get a mac to

[Mono-dev] monodevelop debugger on fedora 10

2009-02-27 Thread buhochil...@gmail.com
Sorry guys probably I missing something but I can't get the monodevelop integrated debugger addin working in my Fedora 10, if I enable rawhide repos I can install the monodevelop alpha 2 preview but still not gdb or mdb paquages...any chance of have it on f10? Thanks Mauricio

Re: [Mono-dev] How do I develop mono/C# applications for the AppleiPhone?

2009-02-27 Thread buhochil...@gmail.com
Mariner, David wrote: Hi Daniel, Firstly, I'll only talk about the authorized development scene for the device. If you don't already know or can't find out about alternate methods, then you'll probably have little success with them if I pointed you in their direction. In my case, I'm

Re: [Mono-dev] How do I develop mono/C# applications for the AppleiPhone?

2009-02-27 Thread Daniel Morgan
I'm only interested in legitimate means. I registered at the Apple Developer Program for info on the iPhone, and I looked around the site reading docs and watching videos. Yet, I was unable to find anything about the minimum RAM and recommended RAM requirements on the development machine for

Re: [Mono-dev] How do I develop mono/C# applications for the AppleiPhone?

2009-02-27 Thread Daniel Morgan
Buy or have a Intel Mac with Mac OS X at least 10.5 Leopard. Do an update to the latest version of Mac OS X. A Mac Mini will work just fine. Go here to the Apple iPhone Developer Program web site: http://developer.apple.com/iphone/program/ If you need to register, go to this site:

[Mono-dev] [PATCH] MonoMethod.cs

2009-02-27 Thread Matthew Metnetsky
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, I was migrating some code from Mono 1.x to .NET 3.5 and came across a very small bug. I was calling MonoMethod.Invoke like so: MethodInfo method = type.GetMethod(Foo); // Foo(int i, string name); method.Invoke(obj,

Re: [Mono-dev] How do I develop mono/C# applications for the AppleiPhone?

2009-02-27 Thread mobbe
I have been working for the last three weeks on trying to get Mono running on the iPhone. I have been fairly successful and I am able to run small pieces of managed code now. However, I am a long, long way from being able to write the whole app in managed code. The only way to get things on the

Re: [Mono-dev] Making Open more atomic/consistent

2009-02-27 Thread Rodrigo Kumpera
On Tue, Feb 24, 2009 at 7:04 AM, LCID Fire lcid-f...@gmx.net wrote: Looking at the System.IO.File.Open/System.IO.MonoIO.Copy method I noticed some oddities in the implementation. First off it does a File.Exists check on the destination file which is IMO too early since the destination file is

Re: [Mono-dev] Making File.Copy more atomic/consistent

2009-02-27 Thread LCID Fire
Sorry, I was messing up the subject ;) - corrected now :) Rodrigo Kumpera wrote: On Tue, Feb 24, 2009 at 7:04 AM, LCID Fire lcid-f...@gmx.net mailto:lcid-f...@gmx.net wrote: So for consistency and to get the actual check more atomic I'd propose to just delete the first check in

[Mono-dev] Subversion server upgrade, part 2 -- mono-cvs.ximian.com

2009-02-27 Thread Gonzalo Paniagua Javier
Hi guys. At some point on Sunday March 1st, around 1am EST, we will be upgrading subversion to the new fsfs 'sharded' layout in mono-cvs.ximian.com. If you are an anonymous SVN user, this does NOT affect you. If you use mono-cvs.ximian.com, this might affect you, but probably not... The

Re: [Mono-dev] Making File.Copy more atomic/consistent

2009-02-27 Thread Rodrigo Kumpera
There are the tests that are part of corlib and System but they might not be enough for your purposes. On Fri, Feb 27, 2009 at 7:30 PM, LCID Fire lcid-f...@gmx.net wrote: Sorry, I was messing up the subject ;) - corrected now :) Rodrigo Kumpera wrote: On Tue, Feb 24, 2009 at 7:04 AM, LCID

Re: [Mono-dev] [PATCH] MonoMethod.cs

2009-02-27 Thread Gonzalo Paniagua Javier
On Fri, 2009-02-27 at 09:50 -0500, Matthew Metnetsky wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, I was migrating some code from Mono 1.x to .NET 3.5 and came across a very small bug. I was calling MonoMethod.Invoke like so: MethodInfo method =