本文介绍了如何在文件流中序列化HtmlElement对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在文件流中序列化HtmlElement对象?
How to serialize HtmlElement object in file stream??
推荐答案
Object obj=new Object();
XmlSerializer sw = new XmlSerializer(typeof(Object));
FileStream fs = new FileStream("**Full FilePath**", FileMode.OpenOrCreate);
sw.Serialize(fs, obj);
fs.Close();
希望这能帮到您,祝您好运.
hope this helped,good luck.
public class HtmlElementWrapper
{
public HtmlElementWrapper()
{ }
public HtmlElementWrapper(HtmlElement htmlElement)
{
this.HtmlElement = htmlElement;
}
public HtmlElement HtmlElement
{ get; set; }
}
或者您也可以使用Binary Serialization(二进制序列化)查看该文章,
使用C#进行对象序列化
祝你好运
or you can use Binary Serialization check out this article for that
Object Serialization using C#
good luck
这篇关于如何在文件流中序列化HtmlElement对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!