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

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


Robert Jordan <[EMAIL PROTECTED]> changed:

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




--- Comment #2 from Robert Jordan <[EMAIL PROTECTED]>  2008-04-19 08:05:06 MST 
---
Unfortunately this is not documented on MSDN but AppDomain.RelativeSearchPath
can contain a ";" separated list of paths. 


Test case:

using System;

class Test
{
        static void Main ()
        {
                AppDomainSetup setup = new AppDomainSetup ();
                setup.PrivateBinPath = "dir1;dir2";
                AppDomain domain = AppDomain.CreateDomain ("foo", null, setup);
                Console.WriteLine (domain.RelativeSearchPath);
        }
}


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

Reply via email to