当前位置:   article > 正文

C#自定义序列化 ISerializable 的实现的代码

iserializable

将开发过程中经常用的内容段收藏起来,如下的资料是关于C#自定义序列化 ISerializable 的实现的内容,希望对小伙伴有些帮助。

   [Serializable]
    public class BaseObject
    {
        [OptionalField]
        private string _str = "I am BaseObject";
    }

    [Serializable]
    public class TestObject : BaseObject, ISerializable
    {
        int a;

        string strName = "";

        Color c = Color.Red;

        DataTable _dtColors = null;
        [OptionalField]
        ArrayList list = new ArrayList();

        [OptionalField]
        List<int> list1 = new List<int>();

        [OptionalField]
        Dictionary<int, string> dic = new Dictionary<int, string>();


        [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)]
        protected TestObject(SerializationInfo info, StreamingContext context)
        {
            #region  如果基类也实现了ISerializable接口,则序列化器会自动调用基类的该构造函数,就不需要本段代码
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/111844?site
推荐阅读
相关标签
  

闽ICP备14008679号