コード例 #1
0
ファイル: Login.cs プロジェクト: mlzboy/db4o-gpl
        public bool CreateAppDomain()
        {
            appDomain = new AppDomainDetails();
            bool check = appDomain.LoadAppDomain(dbInteraction.GetAssemblySearchPath());

            if (checkCustomConfig)
            {
                appDomain.LoadAppDomain(txtCustomConfigAssemblyPath.Text.Trim());
            }
            return(check);
        }
コード例 #2
0
ファイル: Login.cs プロジェクト: Galigator/db4o
	    public bool CreateAppDomain()
        {
           appDomain = new AppDomainDetails();
           bool check = appDomain.LoadAppDomain(dbInteraction.GetAssemblySearchPath());
            if (checkCustomConfig)
                appDomain.LoadAppDomain(txtCustomConfigAssemblyPath.Text.Trim());
            return check;
        }