字符串值变量

时间:2013-05-28 10:58:45

标签: c# reflection

这是情景

string dataTypeName = "Employee";

其中Employee是类,我想创建它的对象。

Type EmployeeObject = Type.GetType(dataTypeName);

现在我想像这样实例化一个Employee的对象

EmployeeObject emp1 = new Employee();

可能吗?但是这种方法不起作用。我对反思没有强烈的想法。请指导我。

1 个答案:

答案 0 :(得分:5)

CreateObjectfromassemblynameandclassname

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


public class Reflection
{

    public static T CreateObject<T>(string assemblyName, string className)
    {
        Assembly assembly = Assembly.Load(assemblyName);
        return (T)assembly.CreateInstance(className);
    }
}