欢迎光临
我们一直在努力

在指定应用程序域中执行代码

建站超值云服务器,限时71元/月

以下为引用的内容:
//
// 在指定应用程序域中执行代码
//
//
//

using System;
using System.Collections.Generic;
using System.Text;

中.国.站长站

namespace DomainTest
{
    class Program
    {
        private static string strKey = "Key1";

站.长.站

        static void Main(string[] args)
        {
            AppDomain domaintest = AppDomain.CreateDomain("Domaintest");
            string strVal = "Value1";
            domaintest.SetData(strKey, strVal);

中国.站.长站

            // 跨程序域调用委托
            CrossAppDomainDelegate callback = delegate
            {
                // 取得当前程序域
                AppDomain domain = AppDomain.CurrentDomain;
                Console.WriteLine(string.Format("Value: {0} In {1}", domain.GetData(strKey), domain.FriendlyName));
            };

Www^Chinaz^com

            // 在指定程序域中执行代码
            domaintest.DoCallBack(callback); Chinaz_com

            Console.Read();
        }
    }
}
中.国站长站

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 在指定应用程序域中执行代码
分享到: 更多 (0)