https://bugzilla.novell.com/show_bug.cgi?id=405277

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=405277#c1


Robert Jordan <[EMAIL PROTECTED]> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |[EMAIL 
PROTECTED]
             Status|NEW                                             |RESOLVED
         Resolution|                                                |INVALID




--- Comment #1 from Robert Jordan <[EMAIL PROTECTED]>  2008-07-01 06:22:45 MDT 
---
This is already fixed. At least in SVN.

A *compilable* test case for the records:

using System;
using System.Windows.Forms;
using System.Xml.Serialization;

public class Test
{
        private DialogResult? result;

        public DialogResult? Result
        {
                get { return result; }
                set { result = value; }
        }

        static void Main ()
        {
                XmlSerializer xs = new XmlSerializer(typeof(Test));
                xs.Serialize (Console.Out, new Test ());
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to