1

我有一个这样的字符串:

typeStr = label1.GetType().ToString();

现在我想type通过typeStr.

我尝试了一些类似Type.GetType(typeStr)但没有帮助的功能。

有什么简单的获取方法type吗?

4

3 回答 3

1

您可以传递全Type

Type type = Type.GetType("System.Windows.Forms.Label");

这将创建类型并创建您可以使用的对象实例Activator.CreateInstance

object obj = Activator.CreateInstance(type);



使用Type已加载AppDomain.CurrentDomain.GetAssemblies()

   private void btnAddDymanicLabel_Click(object sender, EventArgs e)
    {
        Type type = GetTypeNameFromDomain("System.Windows.Forms.Label");
        Label lbl = (Label) Activator.CreateInstance(type);
        this.Controls.Add(lbl);
        lbl.Text = "dynamic created control";


    }

    private Type GetTypeNameFromDomain(string typename)
    {
        return AppDomain.CurrentDomain.GetAssemblies().SelectMany(assembly => assembly.GetTypes().Where(type => type.FullName == typename)).FirstOrDefault();
    }

一个简单的例子:

static void Main(string[] args)
{
    Type type = Type.GetType("System.Int32");
    object obj = Activator.CreateInstance(type);
    int num = (int) obj;
    num = 10;
    Console.WriteLine(num); // prints : 10
}
于 2013-03-10T08:47:34.047 回答
0

您的意思是您只想从这样的字符串中获取该类型的实例吗

classname instance = Activator.CreateInstance("<assemblyname>","<classname>") as classname;
于 2013-03-10T08:53:12.800 回答
0

尝试获取名称

typeStr = label1.GetType().GetFullName();

然后

type = Type.GetType(typeStr);
于 2013-03-10T08:45:27.943 回答