2
我在設置Windows Phone 7應用程序中的對象上的字段時遇到問題(我懷疑它與緊湊框架有關,而不是特定於Windows電話7)。我相信這是專門設置值爲struct
類型的。通常我使用以下命令:如何在Windows Phone 7中的對象上設置結構類型的字段
// fieldName is the name of the field I'm interested in setting
FieldInfo fieldInfo = target.GetType().GetField(fieldName);
// target is the object I'm setting the value on
// value is the value that I am setting
fieldInfo.SetValueDirect(__makeref(target), value);
不幸的是SetValueDirect
不上Windows Phone 7的存在,簡單地使用SetValue
沒有做任何事情的目標。有沒有其他方法通過反射來設置WP7上的struct
字段?