我正在使用自定义转换器来编码对象模型。在客户端,我需要一个空数组,但我不想将此数组包含在服务器上的对象模型中,因为该数组仅在客户端使用。
这就是我所拥有的:
public override IDictionary<string, object> Serialize(object obj, JavaScriptSerializer serializer)
{
MyObjectModel TheObjectModel = obj as ObjectModel;
Dictionary<string, object> OutputJson = new Dictionary<string, object>();
OutputJson.Add("MyEmptyArray", new Array()); // not working here
我需要放什么而不是new Array()
?
谢谢