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

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





--- Comment #7 from Robert Jordan <[EMAIL PROTECTED]>  2008-03-03 06:53:37 MST 
---
I was able to reproduce it with HEAD on Win32/x86.

A simple standalone test case:


using System;

public class Test: MarshalByRefObject
{
        public DateTime Stamp = new DateTime (1968, 1, 2);

        static void Main ()
        {
                AppDomain d = AppDomain.CreateDomain ("foo");
                Test t = (Test) d.CreateInstanceAndUnwrap (typeof
(Test).Assembly.FullName, typeof (Test).FullName);
                Console.WriteLine (t.Stamp);
        }
}


-- 
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  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to