小樣本:反序列化到反序列化類中的列表中?
<head>
<coordinate>
...
</coordinate>
<coordinate>
...
</coordinate>
<coordinate>
...
</coordinate>
<coordinate>
...
</coordinate>
etc.
</head>
這將導致:
public class Head
{
public coordinate[] coordinates;
}
是否第一碼樣本結果的第二代碼樣品中的反序列化鑄造對象的類型「頭」後?
public static void Main(string[] args)
{
XmlSerializer deserializer = new XmlSerializer(typeof(Head));
TextReader reader = new StreamReader("file.xml");
Head obj = (Head)deserializer.Deserialize(reader);
reader.Close();
}
是否要添加反序列化代碼? – dotnetom 2015-04-06 10:37:56
這是一個相當大的項目,所以我只想100%確定可以反序列化到反序列化類中的數組。不幸的是,序列化是我在編程的幾年中錯過的東西。 – Solrik 2015-04-06 11:02:05
@Solrik我的[回覆](http://stackoverflow.com/a/29471671/468718)有幫助嗎? – 2015-04-06 16:35:44