[Mono-bugs] [Bug 366445] assertion failed, accessing value type over remoting

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Mon Mar 3 08:53:37 EST 2008


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

User robertj at gmx.net added comment
https://bugzilla.novell.com/show_bug.cgi?id=366445#c7





--- Comment #7 from Robert Jordan <robertj at gmx.net>  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.


More information about the mono-bugs mailing list