反射先了解 一:system.Type 获取基本信息: Type.Name //类名 Type.FullName //完整路径 Type.Namespace //空间名 public class student { public int Id { set; get; } public string Name { set; get; } public int Age { set; get; } } static void Main(string[] args) { student s = ,…
原文:http://www.cnblogs.com/chenwei19/archive/2009/02/04/1384034.html Class1和Form 窗体在同一个命名空间 using System; using System.Collections.Generic; using System.Text; namespace fanshetest1 { class Class1 { "; public Class1(string aa) { a = aa; } public int aa…
例如 Type type = Type.GetType("ACalCoreServiceLib.BaseService,ACalCoreServiceLib"); 里面的ACalCoreServiceLib.BaseService,ACalCoreServiceLib是完全限定名,逗号后面的命名空间可写可不写 引用:http://www.cnblogs.com/olartan/archive/2011/11/30/2268809.html 关于typeName的说明如下: 1)字符串的…