嗨,伙计们说我有一个带有类型字典的对象
我已经制作了一个函数,可以将数据添加到字典并使用反射从字典中获取数据。
我的问题是如何使用反射修改字典中的项目?
代码示例(不使用反射):
dictionary<string, string> dict = new dictionary<string, string>();
dict.add("key1", "data1");
dict.add("key2", "data2");
console.writeline(dict["key2"]) // <- made using dynamic since it wont store to the objact data (made from relfection)
// code above already accomplished using reflection way
// code below, don't know how to accomplish using reflection way
dict["key2"] = "newdata" // <- how to modify the value of the selected item in object data (made from using reflection)