如何获得这个价值?
提前致谢.
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);
虽然,正如乔恩所说,可能有更好的方法来实现你想要做的事情.通过反射访问私人成员通常是一个非常大的代码味道.