我遇到了以下不起作用的代码
public void Execute(dynamic options){
var dictionary = options as IDictionary<string,object>();//i saw the dictionary is always null but the developer is says it suppose to work!
}
选项包含 json 的位置
[{Id :1212, Page : 12, SortColumn : "Name", SortBy : "ASC"}]
我的问题是这是否可行?我的意思是,是否可以将动态类型引用的 json 转换为 IDictionary 而无需任何黑魔法?