c#根据一个传入的字符串得到需要使用的类

发表于:2007-06-30来源:作者:点击数: 标签:
Type yourType =
Type.GetType("System.Web.UI.WebControls.Label");
Object yourLabel = Activator.CreateInstance(yourType);

原文转自:http://www.ltesting.net