关于C#的Dynamic调用方法前的一些准备的小Demo

using System;
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{


    public class Test
    {
        public static Test TestInt=new Test();
        public int II;

    }
    public class Test2
    {
        public  Test test;
        public void Execute()
        {
            test = Test.TestInt;
        }
    }
    internal class Program
    {
        static void Main(string[] args)
        {
            var a = typeof(Test2).ToString();
            dynamic obj = Assembly.GetExecutingAssembly().CreateInstance(typeof(Test2).ToString());
            obj.Execute();

        }
    }
}


在进入Execute()之前,会准备数据,实例化等级比较高的public static Test TestInt=new Test();然后再进入Execute

posted @   JohnYang819  阅读(10)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
历史上的今天:
2021-08-09 C#中的类
点击右上角即可分享
微信分享提示