Re: [Mono-dev] interacting with method signatures from C (embedded)

2011-10-28 Thread Robert Jordan
On 28.10.2011 01:23, Jonathan Shore wrote: MonoMethod* find_method ( MonoDomain* domain, MonoClass* type, const char* name, int nargs, MonoClass** types) I can iterate over the memebers with mono_signature_get_params(), however, this returns a MonoType* struct

[Mono-dev] int.Parse possible bug

2011-10-28 Thread k0l0b0k . void
Hello. I've reached next difference between Mono and .NET fw in mscorlib - on the following code: Console.WriteLine(int.Parse(0x3E0, System.Globalization.NumberStyles.Any)); .NET fw 2.0.50727.1433 produces a System.FormatException, where as on Mono 2.10.6 this code prints 0. I don't know, may

Re: [Mono-dev] int.Parse possible bug

2011-10-28 Thread Stifu
Could you please file a bug report, so this doesn't get buried and lost? k0l0b0k.void wrote: Hello. I've reached next difference between Mono and .NET fw in mscorlib - on the following code: Console.WriteLine(int.Parse(0x3E0, System.Globalization.NumberStyles.Any)); .NET fw

Re: [Mono-dev] interacting with method signatures from C (embedded)

2011-10-28 Thread Jonathan Shore
Thanks good suggestions and corrections all. I've been feeling my way through the api as a first time user from the C++ side. Now have what I need to move forward. On Thu, Oct 27, 2011 at 6:56 PM, Miguel de Icaza mig...@xamarin.com wrote: Let me suggest a simpler solution. You write your

[Mono-dev] Problems with globalization

2011-10-28 Thread J. Christopher Pereira
In relation to my Bug report: https://bugzilla.novell.com/show_bug.cgi?id=722819, I found out that globalization works (I get ISO-8859-1 output) when the application is located in the root url path (/) with: Alias / /opt/myApp But, it doesn't work (I get UTF-8 output) when I put the

[Mono-list] Alternatives to OleDb

2011-10-28 Thread Paul F. Johnson
Hi, As it looks like OleDb isn't supported any more and I still need to be able to access an Access file on a non-Windows box for an application I'm working on, can anyone suggest any other methods of accessing an Access file on (say) my Linux box? Thanks Paul -- Vertraue mir, ich weiss, was

Re: [Mono-list] Alternatives to OleDb

2011-10-28 Thread Abe Gillespie
You're pretty much out of luck. I'm assuming you must continue supporting the Access format? If not then you should convert it to a free alternative like Postgres or, if portability is required, sqlite. -Abe On Fri, Oct 28, 2011 at 1:34 PM, Paul F. Johnson p...@all-the-johnsons.co.uk wrote:

Re: [Mono-list] System.Diagnostics.Debug.Assert()

2011-10-28 Thread Jonathan Pryor
On Oct 27, 2011, at 1:33 PM, Steve Lessard wrote: Debug builds of my Mono command line application blow right by all Debug.Assert statements, even the ones I know fail the assertion. Heck, even Debug.Assert(false, Foo) gets ignored. Neither running standalone on the command line via