RE: [Mono-dev] Please revert your changes.

2005-08-10 Thread Gert Driesen
-Original Message- From: Miguel de Icaza [mailto:[EMAIL PROTECTED] Sent: woensdag 10 augustus 2005 0:22 To: Gert Driesen Cc: [EMAIL PROTECTED] Subject: RE: [Mono-dev] Please revert your changes. Hello Gert, I don't recall if it existed in .NET 1.1, but it does exist

Re: [Mono-dev] Please revert your changes.

2005-08-10 Thread Pascal Fresnay
Miguel de Icaza a écrit : Hello, Type t = typeof (CustomAttributeBuilder); Console.WriteLine (t.BaseType); And it does not display anything. When compiled with csc 8, it does display _CustomAttributeBuilder. Huh? _CustomAttributeBuilder is an

Re: [Mono-dev] Please revert your changes.

2005-08-10 Thread Kornél Pál
PROTECTED] To: Miguel de Icaza [EMAIL PROTECTED]; mono-devel Mono-devel-list@lists.ximian.com Sent: Wednesday, August 10, 2005 9:47 AM Subject: Re: [Mono-dev] Please revert your changes. Miguel de Icaza a écrit : Hello, Type t = typeof (CustomAttributeBuilder); Console.WriteLine

Re: [Mono-dev] Please revert your changes.

2005-08-10 Thread Miguel de Icaza
Hello, First, I think that .NET SDK is not necessary, csc.exe is included in redistribuable package. Very likely, but the SP1 upgrade does not seem to have touched my SDK directories. What is your mscorlib version number ? on my config : $

Re: [Mono-dev] Please revert your changes.

2005-08-09 Thread Kornél Pál
metadata comparsion should be done on SP1 assemblies rather than on RTM. Kornél - Original Message - From: Gert Driesen [EMAIL PROTECTED] To: 'Miguel de Icaza' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 09, 2005 11:21 PM Subject: RE: [Mono-dev] Please revert your changes

RE: [Mono-dev] Please revert your changes.

2005-08-09 Thread Miguel de Icaza
Hello Gert, I don't recall if it existed in .NET 1.1, but it does exist in .NET 1.1 SP1. I just installed .NET 1.1 SP1 (after much pain) and wrote a simple program: using System; using System.Reflection.Emit; class X { static void Main () { Type t = typeof

Re: [Mono-dev] Please revert your changes.

2005-08-09 Thread Michael Hutchinson
Hi! Note that none of the interfaces starting with _ in System.Runtime.InteropServices are present in the RTM version of 1.1 but are in SP1. There may be other differences. So metadata comparsion should be done on SP1 assemblies rather than on RTM. I am very confused. What does `RTM'

Re: [Mono-dev] Please revert your changes.

2005-08-09 Thread Miguel de Icaza
Hello, You couldn't. I managed to find a document confirming that these interfaces were indeed introduced in .NET 1.1 SP1 : http://www.usysware.com/blog/?p=21 Microsoft's own documentation on MSDN2 says that these first appear in NET 2.0, but I think they're just hiding that there isn't

RE: [Mono-dev] Please revert your changes.

2005-08-09 Thread Jeroen Frijters
Miguel de Icaza wrote: Type t = typeof (CustomAttributeBuilder); Console.WriteLine (t.BaseType); And it does not display anything. When compiled with csc 8, it does display _CustomAttributeBuilder. Huh? _CustomAttributeBuilder is an interface, so it obviously

RE: [Mono-dev] Please revert your changes.

2005-08-09 Thread Miguel de Icaza
Hello, Type t = typeof (CustomAttributeBuilder); Console.WriteLine (t.BaseType); And it does not display anything. When compiled with csc 8, it does display _CustomAttributeBuilder. Huh? _CustomAttributeBuilder is an interface, so it obviously won't show