摘要: using System;namespace Reflection{ publicclassMyClass { publicstring MyField; publicvoid MyMethod() { Console.WriteLine("调用MyMethod! MyField: {0}", MyField); } publicvoid MyMethod(string param) { Console.WriteLine("调用MyMethod! MyField: {0}. 参数: {1}", MyField, param); } }}using Sy 阅读全文
posted @ 2010-06-01 12:59 燃烧吧,少年 阅读(243) 评论(0) 推荐(0) 编辑