摘要:
public class 类{ private string _属性; public string 属性 { set { this._属性 = value; } get { return this._属性; } }}public class 执行{ public 执行() { } public void 方法() { 类 实例 = new 类(); object val = 实例.GetType().GetProperty("属性").GetValue(实例, null); }} 阅读全文
摘要:
object obj = this.GetType().GetField("控件名称", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.IgnoreCase).GetValue(this); Label lbl = (Label)obj; 阅读全文