Я сериализую и десериализую словарь в C #. Моя структура данных:
public class DataField
{
private string _Name;
public string Name
{
get { return _Name; }
set
{
_Name = value;
}
}
private string _Label;
public string Label
{
get { return _Label; }
set
{
_Label = value;
}
}
private ControlType _TypeOfControl;
public ControlType TypeOfControl
{
get { return _TypeOfControl; }
set { _TypeOfControl = value; }
}
private int _Width;
public int Width
{
get { return _Width; }
set
{
_Width = value;
}
}
private DataType _DataType;
public DataType DataType
{
get { return _DataType; }
set { _DataType = value; }
}
private Control _ControlAccessor;
public Control ControlAccessor
{
get { return _ControlAccessor; }
set { _ControlAccessor = value; }
}
private Type _ControlType;
public Type ControlType
{
get { return _ControlType; }
set { _ControlType = value; }
}
private List<KeyValuePair<string, string>> _Items;
public List<KeyValuePair<string, string>> Items
{
get { if (_Items == null) _Items = new List<KeyValuePair<string, string>>(); return _Items; }
set { _Items = value; }
}
Объект, который я сериализую, - Dictionary<string, DataField>()
. Я делаю:
JavaScriptSerializer js = new JavaScriptSerializer();
string str = js.Serialize(ht);`
Полученная строка верна:
{"Title" {"Name":"Title","Label":null,"TypeOfControl":0,"Width":200,"DataType":0,"ControlAccessor":null,"ControlType":null,"Items":[]}
,"Price":{"Name":"Price","Label":null,"TypeOfControl":0,"Width":100,"DataType":1,"ControlAccessor":null,"ControlType":null,"Items":[]}
,"Category":{"Name":"Category","Label":null,"TypeOfControl":0,"Width":100,"DataType":1,"ControlAccessor":null,"ControlType":null,"Items":[]}
,"Test":{"Name":"Test","Label":null,"TypeOfControl":0,"Width":100,"DataType":1,"ControlAccessor":null,"ControlType":null,"Items":[]}
,radioGeo":{"Name":"radioGeo","Label":null,"TypeOfControl":3,"Width":0,"DataType":0,"ControlAccessor":null,"ControlType":null
,"Items":[{"Key":"Position","Value":"posit"},{"Key":"Area","Value":"area"},{"Key":"Area","Value":"area"}]}
,"htmled":{"Name":"htmled","Label":null,"TypeOfControl":2,"Width":170,"DataType":0,"ControlAccessor":null,"ControlType":null,"Items":[]}}";
Когда я десериализую его, ПОЧТИ все правильно. Проблема во вложенных списках. Хотя они сериализуются хорошо, список пуст, когда я возвращаю его обратно вместе.
Есть предложения?