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

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





--- Comment #13 from Robert Jordan <[EMAIL PROTECTED]>  2008-09-26 01:44:44 MDT 
---
I believe it is. Here's another pretty common test case which fails:

using System;
using System.Runtime.Remoting;

class Test : MarshalByRefObject
{
        static void Main ()
        {
                AppDomain domain = AppDomain.CreateDomain ("foo");
                domain.DoCallBack (new Test ().Run);
        }

        public void Run ()
        {
                Console.WriteLine (RemotingServices.IsTransparentProxy (this));
        }
}


It must return "False".


-- 
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