• 大小: 0.83KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 反射  实例  C#  

资源简介

通过Reflection创建实例

资源截图

代码片段和文件信息

using System;
using System.Reflection;

public class Foo
{
    public string Bar { get; set; }
}

public class Program
{
    static void Main()
    {
        string name = “Foo“;
        string property = “Bar“;
        string value = “Baz“;

        // Get the type contained in the name string
        Type type = Type.GetType(name true);

        // create an instance of that type
        object instan

评论

共有 条评论