这是使用反射
获取值的
方法:
PropertyInfo pInfo = pictureBox1.GetType().GetProperty("ImageRectangle",System.Reflection.BindingFlags.Public |
System.Reflection.BindingFlags.NonPublic |
System.Reflection.BindingFlags.Instance);
Rectangle rectangle = (Rectangle)pInfo.GetValue(pictureBox1,null);
虽然,正如乔恩所说,可能有更好的方法来实现你想要做的事情.通过反射访问私人成员通常是一个非常大的代码味道.