本文介绍了如何从变量创建类的实例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我需要创建一个类的实例,其名称我的字符串是

变量,让我们说:

string myTypeName =" MyType" ;;


,结果我需要相当于:

MyType obj = new MyType() ;


我尝试过类似Type.GetType的东西,返回System.Type

但是我不知道如何创建一个新对象有了这个。我的.NET版本

是1.1


我将不胜感激帮助。


祝你好运

teel

Hi there,
I need to create an instance of a class whose name I have in a string
variable, let''s say that:
string myTypeName = "MyType";

and in a result I need the equivalent of:
MyType obj = new MyType();

I''ve tried something like Type.GetType which returns the System.Type
but I don''t know how to create a new object with this. My .NET version
is 1.1

I''d be grateful for help.

Best regards
teel

推荐答案






你究竟是什么意思?课程是

..NET的基本部分,而且一直都是。


-

Jon Skeet - < sk ***@pobox.com>
博客:

如果回复小组,请不要给我发邮件

What on earth do you mean by that? Classes are a fundamental part of
..NET and always have been.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too


这篇关于如何从变量创建类的实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 13:08