zoukankan      html  css  js  c++  java
  • C#对象序列化笔记

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Runtime.Serialization;
    using System.Runtime.Serialization.Json;
    using System.IO;
    
    namespace BIMTClassLibrary
    {
        /// <summary>
        /// 获取用户使用推荐审稿人的信息
        /// wuhailong
        /// 2016-08-19
        /// </summary>
        public class ReviewerPostEntity
        {
            [DataMember(Name = "userId", IsRequired = false, Order = 0)]
            public string userId = string.Empty;
            [DataMember(Name = "kwTitle", IsRequired = false, Order = 0)]
            public string kwTitle = string.Empty;
            [DataMember(Name = "kwAbstr", IsRequired = false, Order = 0)]
            public string kwAbstr = string.Empty;
            [DataMember(Name = "kwKeyword", IsRequired = false, Order = 0)]
            public string kwKeyword = string.Empty;
            [DataMember(Name = "readers", IsRequired = false, Order = 0)]
            public List<ReviewerInfo> readers = null;
            [DataMember(Name = "createTime", IsRequired = false, Order = 0)]
            public string createTime = string.Empty;
    
            public ReviewerPostEntity(string userId, string kwTitle, string kwAbstr, string kwKeyword, List<ReviewerInfo> readers, string createTime)
            {
                try
                {
                    this.userId = userId;
                    this.kwTitle = kwTitle;
                    this.kwAbstr = kwAbstr;
                    this.kwKeyword = kwKeyword;
                    this.readers = readers;
                    this.createTime = createTime;
                }
                catch (Exception)
                {
                    throw;
                }
            }
    
            public ReviewerPostEntity( ) { }
    
            public override string ToString()
            {
                DataContractJsonSerializer dataContractSerializer = new DataContractJsonSerializer(this.GetType());
                using (MemoryStream ms = new MemoryStream())
                {
                    dataContractSerializer.WriteObject(ms, this);
                    return Encoding.UTF8.GetString(ms.ToArray());
                }
            }
        }
    }
    

      

  • 相关阅读:
    MySQL存储引擎InnoDB与Myisam的六大区别
    PHP+mysql防止SQL注入
    HTTPS 的实现原理
    如何保障 API 接口的安全性?
    使用Merge存储引擎实现MySQL分表
    彻底搞懂Reactor模型和Proactor模型
    REDIS集群脑裂以及解决方案
    linux shell文件合并 去重 分割
    python fnmatch & glob
    sed初理多行合并+sed之G、H、g、h使用+sed n/N使用说明
  • 原文地址:https://www.cnblogs.com/wuhailong/p/5787495.html
Copyright © 2011-2022 走看看