2008年1月13日

(转)反射技术示例

摘要: using System;using System.Collections.Generic;using System.Text;namespace ReflectionDemo{ public class HelloWorld { private string strName = null; public HelloWorld(string name) { strName = name; } public HelloWorld() { } public string Name { get { return strName; } } public void SayHello() { if (st 阅读全文

posted @ 2008-01-13 23:58 IT@民工 阅读(126) 评论(0) 推荐(0) 编辑

导航