Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by [EMAIL PROTECTED]

http://bugzilla.ximian.com/show_bug.cgi?id=80024

--- shadow/80024        2007-05-10 14:15:33.000000000 -0400
+++ shadow/80024.tmp.31285      2007-05-10 14:18:27.000000000 -0400
@@ -206,6 +206,25 @@
                                else
                                        throw new Exception ("This case is not 
important");
 
   return val;
 }
 
+
+------- Additional Comments From [EMAIL PROTECTED]  2007-05-10 14:18 -------
+To clarify, the last (ie. workaround) code block should be:
+
+object ReadType (Type type) {
+       object val;
+       DType dtype = Signature.TypeToDType (type);
+
+       if (dtype == DType.Byte)
+               val = ReadByte ();
+       else if (dtype == DType.UInt32)
+               val = ReadUInt32 ();
+       else if (dtype == DType.Boolean)
+               val = ReadBoolean ();
+       else
+               throw new Exception ("This case is not important");
+
+       return val;
+}
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to