我正在调用返回此对象的 Web 服务。我知道我应该在 C# 中使用对象反射来访问sentBatchTotal
. 但是,我一生都无法弄清楚如何到达这处房产。我在这里和 MSDN 上查看了其他几篇文章,但并没有深入了解。
这是我的代码,我做错了什么?
private void button1_Click(object sender, EventArgs e)
{
prdChal.finfunctions service = new prdChal.finfunctions();
//Type thisObject = typeof()
//Type myType = myObject.GetType();
//IList<PropertyInfo> props = new List<PropertyInfo>(myType.GetProperties());
String ThisName = "";
Object StatusReturn = new Object();
StatusReturn = service.UpdateGrantBillStatus(fundBox.Text, toBox.Text, fromBox.Text);
var type = StatusReturn.GetType();
var propertyName = type.Name;
//var propertyValue = propertyName.GetValue(myObject, null);error here
}