下载此文档

学习心得.docx


文档分类:办公文档 | 页数:约6页 举报非法文档有奖
1/6
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/6 下载此文档
文档列表 文档介绍
.net学习心得

  :,,包含类、结构、委托和枚举的组员,包含方法、属性、事件,和结构函数等。有了反射,既能够对每一个类型了如指掌。
  下面来演示一下反射的实例
  (1)新建一个类库项目。在处理方案上单击右键选择添加“新建项目”,在弹出来的框中选择“类库”,在下面名字栏中输入classlib。然后删除class1类,新添加一个类“classperson”,添加以下代码:
  namespace classlib
  {
  public class classperson
  {
  public classperson :this(null)
  {
  }
  public classperson(string strname)
  {
  name = strname;
  }
  private string name;
  private string sex;
  private int age;
  public string name
  {
  get { return name; }
  set { name = value; }
  }
  public string sex
  {
  get { return sex; }
  set { sex = value; }
  }
  public int age
  {
  get { return age; }
  set { age = value; }
  }
  public void sayhello
  {
  if (null==name)
  ("hello world");
  else
  ("hello," + name);
  }
  }
  }
  添加完以后编译生成一下,就会在这个类库项目中的bin\debug中有一个文件。然后添加一个控制台应用程序。引入的命名空间。添加的代码以下:
  using system;
  using ;
  using ;
  using ;
  using ;//添加反射的命名空间
  namespace consoleapplication4
  {
  public class program
  {
  static void main(string args)
  {
  ("列出程序集中的全部类型");
  assembly ass = ("");
  type mytype = ;
  type classperson = null;
  foreach (type p in mytype)
  {
  ;
  if (=="classperson")
  {
  classperson = p;
  }
  }
  ("列出classpersonl类中的全部的方法");
  methodinfo md = ;
  foreach(methodinfo m in md)
  {
  ;
  }
  ("实例化classperson类,并调用sayh

学习心得 来自淘豆网m.daumloan.com转载请标明出处.

相关文档 更多>>
非法内容举报中心
文档信息
  • 页数6
  • 收藏数0 收藏
  • 顶次数0
  • 上传人业精于勤
  • 文件大小15 KB
  • 时间2020-12-18
最近更新