[Mono-dev] System.Reflection.AmbiguousMatchException on Binary Serialization

2010-04-06 Thread Babbage Linden
Hi Folks, We've just started getting these exceptions thrown while serializing LSL scripts running on Mono 1.2.6 embedded in the Second Life simulator (we are currently upgrading to Mono 2.6.x, but we're not there yet). System.Reflection.AmbiguousMatchException: Ambiguous matching in method

Re: [Mono-dev] System.Reflection.AmbiguousMatchException on Binary Serialization

2010-04-06 Thread Zoltan Varga
Hi, Its thrown by this line in CodeGenerator.cs: gen.EmitCall (OpCodes.Callvirt, typeof(BinaryWriter).GetMethod(Write, new Type[] { type }), null); Probably 'type' matches two Write methods in BinaryWriter. Zoltan On Tue, Apr 6, 2010 at 3:16 PM, Babbage Linden