[Mono-dev] Behavior question / possible patch for NameValueCollection

2005-08-31 Thread Peter Williams
Hello all, In the process of tracking down an XSP crash I ran into what I *think* is a misbehavior in the current implementation of NameValueCollection. >From my reading of the MSDN documentation, if you Add ("foo", null) to a collection, the null value should get stored. The attached simple patch

[Mono-dev] [PATCH] Searching for Monodoc

2005-08-31 Thread Mario Sopena
Hey, A patch that I promised to send some time ago. The patch would require that you download my own stripped version of Lucene from here[1]. That version is just the Lucene you can download from http://www.dotlucene.net/ but modified to be in a Monodoc.Lucene... namespace, which let us keep mo

Re: [Mono-dev] Why is UnmanagedType_80 required?

2005-08-31 Thread Kornél Pál
According to my experiences using no ArraySubType has the same result as ArraySubType = (UnmanagedType)80 on mcs and csc.exe as well. Could someone tell me please why UnmanagedType_80 is required? There was a bug in ancient versions of mcs wrt. constant folding in attribute arguments. We neede

[Mono-dev] expected corlib 37, found 38

2005-08-31 Thread Bernhard Herzog
Hello! Sorry for this newbie question and if it has been asked before: I wanted to try the new System.Web.dll so I did an svn update and tried to compile. I don't remember everything I did, but suddenly I got something like: Corlib not in sync with this runtime: expected corlib version 37, fo

[Mono-dev] Skyos is offering money to port Mono to skyos

2005-08-31 Thread Joeri Belis
Maybe old new or no news but maybe somebody is interested. http://www.skyos.org/ransom.php ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] mono_aot_get_method, aot_mutex, and default_opt

2005-08-31 Thread Gary Smithrud
I'm sorry if this is a repeat (we had a power issue and I'm not sure that it got out), but I have not seen the original. The issue is that mono_aot_get_method is coredumping on Solaris 8 in the LeaveCriticalSection because aot_mutex is NULL. Default_opt is 0 and so I believed that mono_ao

Re: [Mono-dev] Re: [PATCH] Fully Asynchronous and Re-Factored Ssl Streams in Mono.Security

2005-08-31 Thread Harry Holt
This seems to work fine on W2k.  Running under IIS5.1 on WXP, though, it always throws an "ObjectDisposedException" in "SSLStreamBase.cs" when a bind over SSL is attempted. Won't this:             if (workthreads >= (maxworkthreads - 4))             {                 async = false;             } c

[Mono-dev] __ComObject should not be public

2005-08-31 Thread Kornél Pál
Hi, We have a public __ComObject in mscorlib. This is wrong. MS.NET has a __ComObject but it's internal. If there is some reason to have Mono a __ComObject as well we should mark it as internal. Do we need __ComObject? Kornél ___ Mono-devel-list mail

Re: [Mono-dev] Why is UnmanagedType_80 required?

2005-08-31 Thread Kornél Pál
According to my experiences using no ArraySubType has the same result as ArraySubType = (UnmanagedType)80 on mcs and csc.exe as well. Could someone tell me please why UnmanagedType_80 is required? There was a bug in ancient versions of mcs wrt. constant folding in attribute arguments. We neede

Re: [Mono-dev] Why is UnmanagedType_80 required?

2005-08-31 Thread Raja R Harinath
Hi, Kornél Pál <[EMAIL PROTECTED]> writes: >>> According to my experiences using no ArraySubType has the same result as >>> ArraySubType = (UnmanagedType)80 on mcs and csc.exe as well. >>> >>> Could someone tell me please why UnmanagedType_80 is required? >> >>There was a bug in ancient versions

Re: [Mono-dev] [PATCH] Add default code page to build system

2005-08-31 Thread Kornél Pál
Hi, Our compiler, mcs uses ISO-28591 as the default code page. This was true in the past and is true currently as well. (There were problems when we tried to use Encoding.Default but that is impossible to use we have to use a specific code page.) This means that the whole class library compiles u

Re: [Mono-dev] Type.GetType inside of dynamic assembly

2005-08-31 Thread Robert Jordan
Hi Jon, Might be a simple question, but I'll ask anyway. I have a small program that calls Type.GetType("MyType, MyAssembly"). This works fine. The program references "MyAssembly" at compile time. I also reference another assembly (say "MyAssembly2") in the executable. MyAssembly2 doe

[Mono-dev] C++ to C# to C++ interop, how can I do this in a mono-compliant way?

2005-08-31 Thread J
Hello,   I am looking for a way of having a C++ exe integrate with a .NET dll.  I have a solution working under Windows (Microsoft.NET 1.1) however I would like to make this function under Mono.   Here are the details:   I currently am writing a C# wrapper of a C++ game engine.  (T2D by garagegame