Re: [Mono-dev] [Mono-patches] r109263 - trunk/mcs/class/System.Data/System.Data

2008-07-30 Thread Atsushi Eno
Hey, I tried the repro case on that bug and verified it works under .NET. Then I removed the parameterless constructor. .NET borked. That means, instead of using XmlReader.ReadContentAsObject(), you would simply write like below. IXmlSerializable x = (IXmlSerializable) Activator.CreateI

Re: [Mono-dev] [Mono-patches] r109263 - trunk/mcs/class/System.Data/System.Data

2008-07-30 Thread Rodrigo Kumpera
Varadhan, Depending on exception on regular paths might lead to disastrous performance. Is this just a corner case for compatibility or this kind of situation might happen often? We might need to document this shortcoming of our stack. Thanks, Rodrigo On Wed, Jul 30, 2008 at 10:56 AM, Veerapura